executeEx method

Future executeEx([
  1. Map<String, String>? paramsEx
])

Implementation

Future<dynamic> executeEx([Map<String, String>? paramsEx]) async {
  if ((app ?? '') == '' || (service ?? '') == '') {
    return {};
  }
  return IvivaAccount()
      .executeServiceBatch(app ?? '', service ?? '', paramsEx ?? {});
}