sendMessage method

Future<void> sendMessage(
  1. String tag,
  2. String message
)

Sends a message to the Node.js process with an associated tag.

Platform-specific implementations must override this.

Implementation

Future<void> sendMessage(String tag, String message) {
  throw UnimplementedError('sendMessage() has not been implemented.');
}