TimeIndicator constructor

TimeIndicator({
  1. Key? key,
  2. required Duration time,
  3. TimeIndicatorStyle? style,
})

Implementation

TimeIndicator({
  super.key,
  required this.time,
  this.style,
}) : assert(time.debugCheckIsValidTimetableTimeOfDay());