process method

  1. @override
Uint8List process(
  1. Uint8List data
)
inherited

Process a whole block of data at once, returning the result in a byte array.

Implementation

@override
Uint8List process(Uint8List data) {
  var out = Uint8List(outputBlockSize);
  var len = processBlock(data, 0, data.length, out, 0);
  return out.sublist(0, len);
}