info static method

String info(
  1. String message, {
  2. bool error = true,
})

Logs an informational message in blue.

Implementation

static String info(String message, {bool error = true}) {
  String output = '{@blue}[INFO] $message{@end}';
  out(output, error: error);

  // Return for testing.
  return output;
}