BarLollipopStyle constructor

const BarLollipopStyle({
  1. double stemWidth = 3.0,
  2. double headRadius = 7.0,
  3. Color? stemColor,
  4. Color? headColor,
  5. 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');