RecurringSchedule constructor

RecurringSchedule({
  1. String? endTime,
  2. String? frequency,
  3. String? lastExecuteTime,
  4. MonthlySchedule? monthly,
  5. String? nextExecuteTime,
  6. String? startTime,
  7. TimeOfDay? timeOfDay,
  8. TimeZone? timeZone,
  9. WeeklySchedule? weekly,
})

Implementation

RecurringSchedule({
  this.endTime,
  this.frequency,
  this.lastExecuteTime,
  this.monthly,
  this.nextExecuteTime,
  this.startTime,
  this.timeOfDay,
  this.timeZone,
  this.weekly,
});