hex property

String hex

Implementation

String get hex {
  if (this == null) {
    return '00000000';
  }
  return this!.value.toRadixString(16).padLeft(8, '0');
}