idString property

String get idString

Hex String of id, return "(empty)" when the id bytes is null

Implementation

String get idString {
  return id?.toHexString() ?? '(empty)';
}
set idString (String? value)

Implementation

set idString(String? value) {
  id = latin1.encode(value!);
}