ImageFilter.dilate constructor
Creates an image filter that dilates each input pixel's channel values to the max value within the given radii along the x and y axes.
Implementation
factory ImageFilter.dilate({ double radiusX = 0.0, double radiusY = 0.0 }) {
return _DilateImageFilter(radiusX: radiusX, radiusY: radiusY);
}