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