hwVersion property

String? get hwVersion

HwVersion: hardware revision identifier (key 260). Stored as a 1-element CBOR array per RFC 9711 Section 4.2.5.

Implementation

String? get hwVersion {
  final v = _map[260];
  if (v is List && v.isNotEmpty) return v[0] as String?;
  return null;
}
set hwVersion (String? value)

Implementation

set hwVersion(String? value) => _set(260, value != null ? [value] : null);