read method
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);