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