Task constructor

Task({
  1. required String taskId,
  2. required String title,
  3. required String event,
  4. required String status,
})

Implementation

Task({
  required this.taskId,
  required this.title,
  required this.event,
  required this.status,
});