Task constructor

Task({
  1. int? id,
  2. String? title,
  3. bool? completed = false,
})

Implementation

Task({this.id, this.title, this.completed = false});