CronSchedule constructor

CronSchedule({
  1. Set<int>? seconds,
  2. Set<int>? minutes,
  3. Set<int>? hours,
  4. Set<int>? daysOfMonth,
  5. Set<int>? months,
  6. Set<int>? daysOfWeek,
  7. Set<int>? years,
})

Implementation

CronSchedule({
  this.seconds,
  this.minutes,
  this.hours,
  this.daysOfMonth,
  this.months,
  this.daysOfWeek,
  this.years,
});