Outline constructor

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

Implementation

Outline({dynamic mode, Color? color, int? width, int? blurLevel}) {
  _mode = mode;
  _color = color;
  _width = width.cldRange(1, 100);
  _blurLevel = blurLevel.cldRange(0, 200);
}