ServiceAccountAllowedLocations.fromJson constructor
ServiceAccountAllowedLocations.fromJson(
- Map json_
Implementation
ServiceAccountAllowedLocations.fromJson(core.Map json_)
: this(
encodedLocations: json_['encodedLocations'] as core.String?,
locations: (json_['locations'] as core.List?)
?.map((value) => value as core.String)
.toList(),
);