writeToByteData method

  1. @override
void writeToByteData(
  1. ByteData byteData,
  2. int offset,
  3. int value
)
override

Implementation to write a value to the byteData of this instance Pointer.

Implementation

@override
void writeToByteData(ByteData byteData, int offset, int value) =>
    byteData.setUint64(offset, value, Endian.host);