outline static method
Adds an outline to a transparent image.
For examples, see the Image Transformations guide.
see https://cloudinary.com/documentation/image_transformations#outline_effects
/// Receives dynamic
, Color, int, int object returns Effect.
Implementation
static Outline outline(
{dynamic mode, Color? color, int? width, int? blurLevel}) {
return Outline(
mode: mode, color: color, width: width, blurLevel: blurLevel);
}