GoalData constructor

GoalData({
  1. String? goalCompletionLocation,
  2. String? goalCompletions,
  3. int? goalIndex,
  4. String? goalName,
  5. String? goalPreviousStep1,
  6. String? goalPreviousStep2,
  7. String? goalPreviousStep3,
  8. double? goalValue,
})

Implementation

GoalData({
  this.goalCompletionLocation,
  this.goalCompletions,
  this.goalIndex,
  this.goalName,
  this.goalPreviousStep1,
  this.goalPreviousStep2,
  this.goalPreviousStep3,
  this.goalValue,
});