SchedulerRepeat constructor

SchedulerRepeat({
  1. required SchedulerRepeatType type,
  2. required int endsOn,
  3. List<int>? repeatOn,
  4. int? repeatInterval,
  5. SchedulerTimeUnit? timeUnit,
})

Implementation

SchedulerRepeat(
    {required this.type,
    required this.endsOn,
    this.repeatOn,
    this.repeatInterval,
    this.timeUnit});