jsPrint method

void jsPrint(
  1. dynamic message
)

Prints a message to the JavaScript console.

Implementation

void jsPrint(dynamic message) {
  throw UnimplementedError("log() has not been implemented.");
}