execute method
Implementation
@override
Future<bool?> execute(
String caller, String propertyOrFunction, List<dynamic> arguments) async {
if (scope == null) return null;
var function = propertyOrFunction.toLowerCase().trim();
switch (function) {
case "start":
case "load":
data = Data.testData(toInt(elementAt(arguments, 0)) ?? rows);
onSuccess(data!, code: 200, message: "Ok");
return true;
}
return super.execute(caller, propertyOrFunction, arguments);
}