bytes property
Uint8List
get
bytes
Implementation
Uint8List get bytes {
final allBytes = WriteBuffer();
for (final plane in planes) {
allBytes.putUint8List(plane.bytes);
}
return allBytes.done().buffer.asUint8List();
}