HourIndicatorSettings constructor

const HourIndicatorSettings({
  1. double height = 1.0,
  2. double offset = 0.0,
  3. Color color = Colors.grey,
  4. LineStyle lineStyle = LineStyle.solid,
  5. double dashWidth = 4,
  6. double dashSpaceWidth = 4,
  7. int startHour = 0,
})

Settings for hour lines

Implementation

const HourIndicatorSettings(
    {this.height = 1.0,
    this.offset = 0.0,
    this.color = Colors.grey,
    this.lineStyle = LineStyle.solid,
    this.dashWidth = 4,
    this.dashSpaceWidth = 4,
    this.startHour = 0})
    : assert(height >= 0, "Height must be greater than or equal to 0.");