callMethod method

Object? callMethod(
  1. Object? target,
  2. String method, [
  3. List<Object?> args = const []
])

Calls method on a JavaScript target object in browser builds.

Implementation

Object? callMethod(
  Object? target,
  String method, [
  List<Object?> args = const [],
]) =>
    null;