ListLocationsResponse constructor

ListLocationsResponse({
  1. Iterable<Location>? locations,
})

Implementation

factory ListLocationsResponse({
  $core.Iterable<Location>? locations,
}) {
  final $result = create();
  if (locations != null) {
    $result.locations.addAll(locations);
  }
  return $result;
}