error static method

void error(
  1. String message
)

Prints message with an error symbol in front of it.

Implementation

static void error(String message) => _print(ConsoleSymbols.error, message);