startNodeProject method

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

Starts the Node.js engine by executing the given entry file mainFileName.

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

Platform-specific implementations must override this.

Implementation

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