pixelate method Null safety
- {dynamic squareSize,
- Region? region}
Applies a pixelation effect to the image.
Receives dynamic
, Region object and returns Effect
Implementation
static Pixelate pixelate({dynamic squareSize, Region? region}) {
return Pixelate(squareSize: squareSize, region: region);
}