bytes property
Uint8List
get
bytes
Implementation
Uint8List get bytes {
return ([typeNum] + data) as Uint8List; // Strong cast, MAYBE have problems.
}
set
bytes
(Uint8List bytes)
Implementation
set bytes(Uint8List bytes) {
typeNum = bytes[0];
data = bytes.sublist(1);
}