printableBg property

  1. @override
String get printableBg
override

Returns a human-readable string representation of the background color.

For dimmed colors, appends "(d)" to the color name.

Implementation

@override
String get printableBg => _dim ? '$name(d)' : name;