setOemidIeee method
Sets OEMID to a 3-byte IEEE OUI/MA-L.
Implementation
void setOemidIeee(Uint8List id) {
if (id.length != 3) {
throw ArgumentError.value(id.length, 'id.length', 'must be 3 bytes');
}
_map[258] = id;
}
Sets OEMID to a 3-byte IEEE OUI/MA-L.
void setOemidIeee(Uint8List id) {
if (id.length != 3) {
throw ArgumentError.value(id.length, 'id.length', 'must be 3 bytes');
}
_map[258] = id;
}