runJavascript method

Future<void> runJavascript(
  1. String javascript
)

Runs the given JavaScript in the context of the current page.

The Future completes with an error if a JavaScript error occurred.

Implementation

Future<void> runJavascript(String javascript) {
  throw UnimplementedError(
      'WebView runJavascript is not implemented on the current platform');
}