ListAssignedLocationsResponse.fromJson constructor
ListAssignedLocationsResponse.fromJson(
- Map json_
Implementation
ListAssignedLocationsResponse.fromJson(core.Map json_)
: this(
assignedLocations: json_.containsKey('assignedLocations')
? (json_['assignedLocations'] as core.List)
.map((value) => AssignedLocation.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
nextPageToken: json_.containsKey('nextPageToken')
? json_['nextPageToken'] as core.String
: null,
);