Task constructor

Task({
  1. required String name,
  2. int progress = 0,
})

Implementation

Task({required this.name, this.progress = 0});