BarLollipopStyle constructor
- double stemWidth = 3.0,
- double headRadius = 7.0,
- Color? stemColor,
- Color? headColor,
- BarBorderStyle? headBorder,
Implementation
const BarLollipopStyle({
this.stemWidth = 3.0,
this.headRadius = 7.0,
this.stemColor,
this.headColor,
this.headBorder,
}) : assert(stemWidth > 0, 'Lollipop stem width must be positive'),
assert(headRadius > 0, 'Lollipop head radius must be positive');