void call({ Object? object, required String methodName, List<Object?> args = const [], }) { object ??= js.globalThis; js.callMethod(object, methodName, args); }