Buffer.fromFloat64 constructor
Buffer.fromFloat64(
- double value
Creates a Buffer from a f64
value.
Implementation
factory Buffer.fromFloat64(final double value) =>
Buffer(ByteLength.f64)..setFloat64(value, 0);