ReportSchedule constructor

ReportSchedule({
  1. bool? active,
  2. int? every,
  3. DateTime? expirationDate,
  4. String? repeats,
  5. List<String>? repeatsOnWeekDays,
  6. String? runsOnDayOfMonth,
  7. DateTime? startDate,
  8. String? timezone,
})

Implementation

ReportSchedule({
  this.active,
  this.every,
  this.expirationDate,
  this.repeats,
  this.repeatsOnWeekDays,
  this.runsOnDayOfMonth,
  this.startDate,
  this.timezone,
});