ListPlanStatusesResponse constructor

ListPlanStatusesResponse(
  1. {Iterable<PlanStatusWithID>? planStatusesWithIds}
)

Implementation

factory ListPlanStatusesResponse({
  $core.Iterable<PlanStatusWithID>? planStatusesWithIds,
}) {
  final $result = create();
  if (planStatusesWithIds != null) {
    $result.planStatusesWithIds.addAll(planStatusesWithIds);
  }
  return $result;
}