comment method

void comment(
  1. String message
)

Prints a message in gray/muted color

Implementation

void comment(String message) {
  print('\x1B[90m$message\x1B[0m');
}