SearchGoogleLocationsRequest.fromJson constructor
SearchGoogleLocationsRequest.fromJson(
- Map json_
Implementation
SearchGoogleLocationsRequest.fromJson(core.Map json_)
: this(
location: json_.containsKey('location')
? Location.fromJson(
json_['location'] as core.Map<core.String, core.dynamic>,
)
: null,
pageSize: json_['pageSize'] as core.int?,
query: json_['query'] as core.String?,
);