callPluginExport method
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);
}