getDoubleFloat method

double getDoubleFloat(
  1. Uint8Buffer buff
)

Get a double-precision float from a buffer value.

Implementation

double getDoubleFloat(typed.Uint8Buffer buff) {
  final bdata = ByteData.view(buff.buffer);
  return bdata.getFloat64(0);
}