Formats the given value with the style.
String formatted(Object? value) { var result = value.toString(); for (final code in _codes) { result = result.withAnsiStyleCode(code); } return result; }