error static method

void error(
  1. String message
)

Print error message in red with border

Implementation

static void error(String message) {
  _printBoxed(message, colorCode: 31, label: 'ERROR');
}