toHex property

String get toHex

Implementation

String get toHex {
  return '#${(value & 0xFFFFFFFF).toRadixString(16).padLeft(6, '0').toUpperCase()}';
}