writeFloat method
Implementation
void writeFloat(double? value) {
if (value == null) {
writeNil();
return;
}
_bytesBuilder.addByte(MessagePackCode.float32);
_writeBigEndianFloat(value);
}
void writeFloat(double? value) {
if (value == null) {
writeNil();
return;
}
_bytesBuilder.addByte(MessagePackCode.float32);
_writeBigEndianFloat(value);
}