hint method

void hint(
  1. String message, {
  2. bool label = true,
})

Implementation

void hint(String message, {bool label = true}) {
  if (label) {
    stdout(hintMessageColor('$hintLabel: $message'));
  } else {
    stdout(hintMessageColor(message));
  }
}