processBytes abstract method

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

int processBytes(
    Uint8List inp, int inpOff, int len, Uint8List out, int outOff);