cartoonify static method

Cartoonify cartoonify({
  1. dynamic lineStrength,
  2. dynamic colorReductionLevel,
  3. bool? blackwhite,
})

Applies a cartoon effect to an image. Receives dynamic, dynamic, bool returns Effect.

Implementation

static Cartoonify cartoonify(
    {dynamic lineStrength, dynamic colorReductionLevel, bool? blackwhite}) {
  return Cartoonify(
      lineStrength: lineStrength,
      colorReductionLevel: colorReductionLevel,
      blackwhite: blackwhite);
}