pixelate method Null safety

Pixelate pixelate(
  1. {dynamic squareSize,
  2. 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);
}