labeledAccent method

void labeledAccent(
  1. String label,
  2. String value
)

Writes a labeled value with accent color on the value.

Implementation

void labeledAccent(String label, String value) {
  gutterLine(
      '${theme.dim}$label:${theme.reset} ${theme.accent}$value${theme.reset}');
}