writeToByteData method

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

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

Implementation

@override
void writeToByteData(ByteData byteData, int offset, T value) =>
    writer(byteData, offset, value);