error static method

void error(
  1. String message
)

Implementation

static void error(String message) {
  //SET THE COLOR TO RED
  stdout.write('\x1B[31m$message\x1B[0m');
}