NiceQuestObjective constructor

const NiceQuestObjective({
  1. required String label,
  2. int current = 0,
  3. int target = 1,
  4. bool completed = false,
})

Implementation

const NiceQuestObjective({
  required this.label,
  this.current = 0,
  this.target = 1,
  this.completed = false,
});