TodoTask constructor
TodoTask({
- String? id,
- String? title,
- String? body,
- String? status,
- String? importance,
- bool? isCompleted,
- bool? hasRecurrence,
- String? createdDateTime,
- String? lastModifiedDateTime,
- String? dueDateTime,
- String? completedDateTime,
- String? parentListId,
- List<
String> ? categories, - RecurrencePattern? recurrence,
- Map<
String, dynamic> ? extensions, - 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,
});