execute method

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

Implementation

Future<dynamic> execute([Map<String, String>? paramsEx]) async {
  /*
  need below check otherwise blank model and action lucy action could be added to the execution list
  eventually will return null but an overhead
  */

  if ((app ?? "") == "" || (service ?? "") == "") {
    return null;
  }

  return IvivaAccount()
      .executeServiceBatch(app!, service!, paramsEx ?? params ?? {});
}