AllocationPolicy_LocationPolicy constructor

AllocationPolicy_LocationPolicy({
  1. Iterable<String>? allowedLocations,
})

Implementation

factory AllocationPolicy_LocationPolicy({
  $core.Iterable<$core.String>? allowedLocations,
}) {
  final $result = create();
  if (allowedLocations != null) {
    $result.allowedLocations.addAll(allowedLocations);
  }
  return $result;
}