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