byteDataSetInt64 function

void byteDataSetInt64(
  1. ByteData byteData,
  2. int byteOffset,
  3. BigInt value,
  4. Endian endian
)

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

Implementation

void byteDataSetInt64($data.ByteData byteData, int byteOffset, BigInt value,
        $data.Endian endian) =>
    byteData.setInt64(byteOffset, value.toInt(), endian);