getUint64 static method

I64 getUint64(
  1. ByteData bytes,
  2. int offset,
  3. Endian endian
)

Read unsigned I64 from bytes (ByteData) in offset

Implementation

static I64 getUint64(ByteData bytes, int offset, Endian endian) =>
    impl.getUint64Bytes(bytes, offset, endian);