Progress constructor

Progress({
  1. required String? id,
  2. required String? category,
  3. required String? parentId,
  4. required int? progressSeconds,
  5. required double? progressPercentage,
  6. required int? completions,
})

Implementation

Progress({
  required this.id,
  required this.category,
  required this.parentId,
  required this.progressSeconds,
  required this.progressPercentage,
  required this.completions,
});