executeAppTask method

void executeAppTask(
  1. String taskName,
  2. Map<String, dynamic> data
)

Implementation

void executeAppTask(String taskName,Map<String,dynamic> data){
  if(_dataTaskFunctions.containsKey(taskName)){
    simplify.debugMessage("Found task : "+taskName);
    Simplify.executeFunctions(taskName,_dataTaskFunctions,{"data":data,"context":context});
  }
  else{
    simplify.debugMessage("Handler not found for task : "+taskName);
  }
}