fillBytes method

  1. @override
void fillBytes(
  1. int value,
  2. int length, [
  3. int byteOffset = 0
])
override

Fills length bytes starting at byteOffset with the low byte of value.

Implementation

@override
void fillBytes(int value, int length, [int byteOffset = 0]) => ptr.fillBytes(value, length, byteOffset);