callPluginExport method

  1. @override
Future<Object?> callPluginExport(
  1. JsPlugin plugin,
  2. String method,
  3. List<Object?> args, {
  4. Duration? timeout,
})
override

Calls one export declared by the supplied plugin.

Implementation

@override
Future<Object?> callPluginExport(
  JsPlugin plugin,
  String method,
  List<Object?> args, {
  Duration? timeout,
}) {
  _ensureOpen();
  return _engine.callPluginExport(plugin, method, args, timeout: timeout);
}