Apply the SubFilter to an Image.
@override void apply(Uint8List pixels, int width, int height) { for (ImageSubFilter subFilter in subFilters) { subFilter.apply(pixels, width, height); } }