getFloat32 method

dynamic getFloat32()

Implementation

getFloat32() {
  var value = this.dv.buffer.asByteData().getFloat32(
      this.offset, this.littleEndian ? Endian.little : Endian.big);
  this.offset += 4;
  return value;
}