TimePickerSectorDecoration constructor

TimePickerSectorDecoration({
  1. Color color = Colors.grey,
  2. double size = 6.0,
  3. double width = 2.0,
  4. bool useRoundedCap = true,
  5. double radiusPadding = 0.0,
})

Creates a TimePickerSectorDecoration.

Implementation

TimePickerSectorDecoration({
  this.color = Colors.grey,
  this.size = 6.0,
  this.width = 2.0,
  this.useRoundedCap = true,
  this.radiusPadding = 0.0,
}) : assert(size > 0,
          "attribute [primaryDividerSize] needs to be bigger than 0");