Task constructor
Task({
- dynamic id,
- dynamic localId,
- dynamic spaceId,
- dynamic pageId,
- dynamic blogPostId,
- TaskStatus? status,
- BodySingle? body,
- String? createdBy,
- String? assignedTo,
- String? completedBy,
- DateTime? createdAt,
- DateTime? updatedAt,
- DateTime? dueAt,
- DateTime? completedAt,
Implementation
Task(
{this.id,
this.localId,
this.spaceId,
this.pageId,
this.blogPostId,
this.status,
this.body,
this.createdBy,
this.assignedTo,
this.completedBy,
this.createdAt,
this.updatedAt,
this.dueAt,
this.completedAt});