Tasks constructor

Tasks({
  1. int? total,
  2. int? completed,
  3. int? pending,
  4. List<TaskList>? taskList,
})

Implementation

Tasks({
  this.total,
  this.completed,
  this.pending,
  this.taskList,
});