error method Null safety

void error(
  1. String e
)

It prints the message to the console.

Args: message (String): The message to print to the console.

Implementation

static void error(String e) {
  _logger.wtf(e);
}