apply method

  1. @override
void apply(
  1. Uint8List pixels,
  2. int width,
  3. int height
)
override

Apply the SubFilter to an Image.

Implementation

@override
void apply(Uint8List pixels, int width, int height) {
  for (ImageSubFilter subFilter in subFilters) {
    subFilter.apply(pixels, width, height);
  }
}