GoogleMapsPlacesV1SearchTextRequestLocationRestriction.fromJson constructor

GoogleMapsPlacesV1SearchTextRequestLocationRestriction.fromJson(
  1. Map json_
)

Implementation

GoogleMapsPlacesV1SearchTextRequestLocationRestriction.fromJson(
    core.Map json_)
    : this(
        rectangle: json_.containsKey('rectangle')
            ? GoogleGeoTypeViewport.fromJson(
                json_['rectangle'] as core.Map<core.String, core.dynamic>)
            : null,
      );