call method

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

Implementation

@override
GoalStatus call({
  GoalID? goal_id,
  int? status,
  String? text,
}) => GoalStatus(
goal_id: goal_id,
status: status,
text: text,
);