hexColor property

String get hexColor

Gets the hex color string representation.

Implementation

String get hexColor {
  return '#${toARGB32().toRadixString(16).padLeft(8, '0')}';
}