M_forward method
Implementation
Uint8List M_forward() {
ByteData bytedata = ByteData(2);
bytedata.setInt16(0, this.value, Endian.little);
return Uint8List.view(bytedata.buffer);
}
Uint8List M_forward() {
ByteData bytedata = ByteData(2);
bytedata.setInt16(0, this.value, Endian.little);
return Uint8List.view(bytedata.buffer);
}