Task constructor

Task({
  1. required Status status,
  2. int? progressPercent,
  3. String? statusDetail,
})

Implementation

Task({
  required this.status,
  this.progressPercent,
  this.statusDetail,
});