SearchGoogleLocationsResponse.fromJson constructor
SearchGoogleLocationsResponse.fromJson(
- Map json_
Implementation
SearchGoogleLocationsResponse.fromJson(core.Map json_)
: this(
googleLocations: (json_['googleLocations'] as core.List?)
?.map(
(value) => GoogleLocation.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
);