processBytes method

  1. @override
int processBytes(
  1. Uint8List inp,
  2. int inpOff,
  3. int len,
  4. Uint8List out,
  5. int outOff,
)

Process len bytes from inp starting at offset inpOff and output the result to out at offset outOff.

Returns the number of bytes written to the output.

Implementation

@override
int processBytes(
    Uint8List inp, int inpOff, int len, Uint8List out, int outOff) {
  data.write(inp, inpOff, len);
  return 0;
}