outline static method

Outline outline({
  1. dynamic mode,
  2. Color? color,
  3. int? width,
  4. int? blurLevel,
})

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);
}