HourIndicatorSettings constructor

const HourIndicatorSettings({
  1. double height = 1.0,
  2. double offset = 0.0,
  3. Color color = Colors.grey,
})

Settings for hour lines

Implementation

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