GoalStatus constructor

GoalStatus({
  1. GoalID? goal_id,
  2. int? status,
  3. String? text,
})

Implementation

GoalStatus({
  GoalID? goal_id,
  int? status,
  String? text,
}):
this.goal_id = goal_id ?? GoalID(),
this.status = status ?? 0,
this.text = text ?? '';