objectCall method
Implementation
Object objectCall(obj, method, {List<Object>? args}) async =>
await _controller.runJavaScriptReturningResult(
"objectCall('" +
json.encode(obj) +
"' ,'" +
method +
"' ,'" +
json.encode(args ?? []) +
"');",
);