byteDataGetInt64 function

BigInt byteDataGetInt64(
  1. ByteData byteData,
  2. int byteOffset,
  3. Endian endian
)

The code is used only internally and is not a public API. The comment exists mainly to satisfy the linter.

Implementation

BigInt byteDataGetInt64(
        $data.ByteData byteData, int byteOffset, $data.Endian endian) =>
    BigInt.from(byteData.getInt64(byteOffset, endian));