hex32 property

String hex32

Implementation

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