PlannerTask constructor

PlannerTask({
  1. String? id,
  2. String? title,
  3. String? planId,
  4. String? bucketId,
  5. int? priority,
  6. int? checklistItemCount,
  7. int? activeChecklistItemCount,
  8. int? percentComplete,
  9. String? dueDateTime,
  10. String? createdDateTime,
  11. String? startDateTime,
  12. String? completedDateTime,
  13. String? lastModifiedDateTime,
  14. String? completedBy,
  15. Map<String, bool>? appliedCategories,
  16. Map<String, TaskAssignment>? assignments,
  17. String? previewType,
  18. bool? completed,
  19. String? referenceCount,
  20. String? assigneePriority,
  21. String? orderHint,
  22. PlannerTaskDetails? details,
})

Creates a new PlannerTask instance.

Implementation

PlannerTask({
  this.id,
  this.title,
  this.planId,
  this.bucketId,
  this.priority,
  this.checklistItemCount,
  this.activeChecklistItemCount,
  this.percentComplete,
  this.dueDateTime,
  this.createdDateTime,
  this.startDateTime,
  this.completedDateTime,
  this.lastModifiedDateTime,
  this.completedBy,
  this.appliedCategories,
  this.assignments,
  this.previewType,
  this.completed,
  this.referenceCount,
  this.assigneePriority,
  this.orderHint,
  this.details,
});