getDouble64 method

double getDouble64()

Implementation

double getDouble64() {
  var ul = doSigned ? Int8List.fromList(get(8)) : Uint8List.fromList(get(8));
  return ByteConversionUtilities.getDouble64(ul, _endian);
}