TaskUpdateRequest constructor

TaskUpdateRequest({
  1. String? id,
  2. String? localId,
  3. String? spaceId,
  4. String? pageId,
  5. String? blogPostId,
  6. required TaskUpdateRequestStatus status,
  7. String? createdBy,
  8. String? assignedTo,
  9. String? completedBy,
  10. DateTime? createdAt,
  11. DateTime? updatedAt,
  12. DateTime? dueAt,
  13. DateTime? completedAt,
})

Implementation

TaskUpdateRequest(
    {this.id,
    this.localId,
    this.spaceId,
    this.pageId,
    this.blogPostId,
    required this.status,
    this.createdBy,
    this.assignedTo,
    this.completedBy,
    this.createdAt,
    this.updatedAt,
    this.dueAt,
    this.completedAt});