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