Task constructor

Task({
  1. AssignmentInfo? assignmentInfo,
  2. String? completed,
  3. bool? deleted,
  4. String? due,
  5. String? etag,
  6. bool? hidden,
  7. String? id,
  8. String? kind,
  9. List<TaskLinks>? links,
  10. String? notes,
  11. String? parent,
  12. String? position,
  13. String? selfLink,
  14. String? status,
  15. String? title,
  16. String? updated,
  17. String? webViewLink,
})

Implementation

Task({
  this.assignmentInfo,
  this.completed,
  this.deleted,
  this.due,
  this.etag,
  this.hidden,
  this.id,
  this.kind,
  this.links,
  this.notes,
  this.parent,
  this.position,
  this.selfLink,
  this.status,
  this.title,
  this.updated,
  this.webViewLink,
});