StandardSchedule constructor

StandardSchedule({
  1. BackupWindow? backupWindow,
  2. List<int>? daysOfMonth,
  3. List<String>? daysOfWeek,
  4. int? hourlyFrequency,
  5. List<String>? months,
  6. String? recurrenceType,
  7. String? timeZone,
  8. WeekDayOfMonth? weekDayOfMonth,
})

Implementation

StandardSchedule({
  this.backupWindow,
  this.daysOfMonth,
  this.daysOfWeek,
  this.hourlyFrequency,
  this.months,
  this.recurrenceType,
  this.timeZone,
  this.weekDayOfMonth,
});