GoogleMapsPlacesV1PlaceConsumerAlertDetails.fromJson constructor

GoogleMapsPlacesV1PlaceConsumerAlertDetails.fromJson(
  1. Map json_
)

Implementation

GoogleMapsPlacesV1PlaceConsumerAlertDetails.fromJson(core.Map json_)
  : this(
      aboutLink: json_.containsKey('aboutLink')
          ? GoogleMapsPlacesV1PlaceConsumerAlertDetailsLink.fromJson(
              json_['aboutLink'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      description: json_['description'] as core.String?,
      title: json_['title'] as core.String?,
    );