printError static method

void printError(
  1. String message
)

Print error message with red color

Implementation

static void printError(String message) {
  printColored('✗ $message', color: 'red');
}