step static method

void step(
  1. String message
)

Prints a step message in cyan with an arrow symbol.

Implementation

static void step(String message) {
  print('$_cyan▸$_reset $message');
}