startNodeWithScript method

Future<void> startNodeWithScript(
  1. String script, {
  2. bool redirectOutputToLogcat = true,
})

Starts the embedded Node.js engine with an inline JavaScript script.

  • redirectOutputToLogcat: If true, routes stdout/stderr to Logcat.

Platform-specific implementations must override this.

Implementation

Future<void> startNodeWithScript(
  String script, {
  bool redirectOutputToLogcat = true,
}) {
  throw UnimplementedError('startNodeWithScript() has not been implemented.');
}