read method

  1. @override
num read(
  1. ByteData data,
  2. int offset
)
override

Reads a numeric value from the given ByteData starting at the specified offset.

The value is read as a 64-bit floating-point number using big-endian byte order.

Implementation

@override
num read(ByteData data, int offset) => data.getFloat64(offset, Endian.big);