stringFromColor function

String stringFromColor(
  1. Color color
)

Gets the representation letter from a color.

Implementation

String stringFromColor(Color color) => _letterByColor[color]!;