Todo constructor

Todo({
  1. required String uid,
  2. String? summary,
  3. String? description,
  4. List<Attachment>? attachments,
  5. List<Attendee>? attendees,
  6. Organizer? organizer,
  7. DateTime? created,
  8. DateTime? lastModified,
  9. DateTime? startDate,
  10. DateTime? dueDate,
  11. DateTime? completedDate,
  12. RecurrenceRule? recurrenceRule,
})

Implementation

Todo({
  required this.uid,
  this.summary,
  this.description,
  this.attachments,
  this.attendees,
  this.organizer,
  this.created,
  this.lastModified,
  this.startDate,
  this.dueDate,
  this.completedDate,
  this.recurrenceRule,
});