call method

dynamic call(
  1. String method, [
  2. List? args
])

Makes a JQuery call.

method The method to call. args Arguments to the method.

Implementation

dynamic call(String method, [List? args]) {
  return _o!.callMethod(method, args);
}