callMethod<T> function
Null safety
Implementation
T callMethod<T>(Object o, String method, List<Object?> args) {
assertInteropArgs(args);
return JS<dynamic>('Object|Null', '#[#].apply(#, #)', o, method, o, args);
}