keyValue method
Writes a key-value pair line with colored value: │ key = value
Implementation
void keyValue(String key, String value, {String separator = '='}) {
gutterLine(
'${theme.highlight}$key${theme.reset} ${theme.dim}$separator${theme.reset} ${theme.selection}$value${theme.reset}');
}