setFloat32 method
Writes a floating point value to 4-bytes.
The offset must satisfy the relations 0 ≤ offset ≤ offset+4 ≤ this.length.
Implementation
void setFloat32(final double value, final int offset, [final Endian endian = Endian.little]) {
return asByteData().setFloat32(offset, value, endian);
}