cartoonify method Null safety
- {dynamic lineStrength,
- dynamic colorReductionLevel,
- 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);
}