evaluateJavascriptWeb method

Future evaluateJavascriptWeb(
  1. String name, {
  2. bool hasReturnValue = false,
})

A function to execute JS passed as a WebScript to the editor. This should only be used on Flutter Web.

Implementation

Future<dynamic> evaluateJavascriptWeb(String name,
        {bool hasReturnValue = false}) =>
    Future.value();