apply method

void apply (Uint8List pixels)

Apply the Filter to an Image.

Implementation

void apply(Uint8List pixels) {
  for (SubFilter subFilter in subFilters) {
    subFilter.apply(pixels);
  }
}