executeAppTask method
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);
}
}