TodoTask constructor

TodoTask({
  1. String? id,
  2. String? title,
  3. String? body,
  4. String? status,
  5. String? importance,
  6. bool? isCompleted,
  7. bool? hasRecurrence,
  8. String? createdDateTime,
  9. String? lastModifiedDateTime,
  10. String? dueDateTime,
  11. String? completedDateTime,
  12. String? parentListId,
  13. List<String>? categories,
  14. RecurrencePattern? recurrence,
  15. Map<String, dynamic>? extensions,
  16. LinkedResources? linkedResources,
})

Creates a new TodoTask instance.

Implementation

TodoTask({
  this.id,
  this.title,
  this.body,
  this.status,
  this.importance,
  this.isCompleted,
  this.hasRecurrence,
  this.createdDateTime,
  this.lastModifiedDateTime,
  this.dueDateTime,
  this.completedDateTime,
  this.parentListId,
  this.categories,
  this.recurrence,
  this.extensions,
  this.linkedResources,
});