ReminderScheduled constructor

ReminderScheduled({
  1. int? id,
  2. int? datetime,
  3. ReminderType? reminderType,
  4. String? comment,
  5. List<int>? dayOfWeek,
  6. int? from,
  7. int? loopModeDate,
  8. int? loopModeRepetitive,
  9. int? to,
  10. String? typeSchedule,
})

Implementation

ReminderScheduled({
  this.id,
  this.datetime,
  this.reminderType,
  this.comment,
  this.dayOfWeek,
  this.from,
  this.loopModeDate,
  this.loopModeRepetitive,
  this.to,
  this.typeSchedule,
});