ImageFilter typedef
ImageFilter =
CanvasImageSource Function(CanvasImageSource? image, int width, int height)
Applies a filter to image
, of width
and height
.
Implementation
typedef ImageFilter = CanvasImageSource Function(
CanvasImageSource? image, int width, int height);