GoogleMapsPlacesV1PlaceConsumerAlertDetails.fromJson constructor
GoogleMapsPlacesV1PlaceConsumerAlertDetails.fromJson(
- 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?,
);