optionsBytes property
Uint8List
get
optionsBytes
Implementation
Uint8List get optionsBytes {
final byteData = optionsByteData;
return Uint8List.view(
byteData.buffer,
byteData.offsetInBytes,
byteData.lengthInBytes,
);
}
set
optionsBytes
(Uint8List value)
Implementation
set optionsBytes(Uint8List value) {
optionsByteData = ByteData.view(
value.buffer,
value.offsetInBytes,
value.lengthInBytes,
);
}