white static method

void white(
  1. String text, {
  2. String name = 'white',
})

Log to console in white

Implementation

static void white(String text, {String name = 'white'}) => developer.log(
      '\x1B[37m$text\x1B[0m',
      name: name,
    );