hex24 property

String hex24

Implementation

String get hex24 {
  if (this < 0 || this > 0xFFFFFF) throw Exception('Invalid data!');
  return toRadixString(16).toUpperCase().padLeft(6, '0');
}