QueryCurrentPlanResponse constructor

QueryCurrentPlanResponse({
  1. Plan? plan,
})

Implementation

factory QueryCurrentPlanResponse({
  $3.Plan? plan,
}) {
  final _result = create();
  if (plan != null) {
    _result.plan = plan;
  }
  return _result;
}