readDouble method

double readDouble()

Implementation

double readDouble() {
  final value =
      _byteBuffer.buffer.asByteData().getFloat64(_position, Endian.big);
  _position += 8;
  return value;
}