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