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();
bool refresh = S.toBool(S.item(arguments,0)) ?? false;
switch (function)
{
case "patch" : return await start(refresh: refresh);
}
return super.execute(caller, propertyOrFunction, arguments);
}