setOemidRandom method
Sets OEMID to a 16-byte random manufacturer identifier.
Implementation
void setOemidRandom(Uint8List id) {
if (id.length != 16) {
throw ArgumentError.value(id.length, 'id.length', 'must be 16 bytes');
}
_map[258] = id;
}