GoogleMapsPlacesV1Photo.fromJson constructor
GoogleMapsPlacesV1Photo.fromJson(
- Map json_
Implementation
GoogleMapsPlacesV1Photo.fromJson(core.Map json_)
: this(
authorAttributions: (json_['authorAttributions'] as core.List?)
?.map(
(value) => GoogleMapsPlacesV1AuthorAttribution.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
flagContentUri: json_['flagContentUri'] as core.String?,
googleMapsUri: json_['googleMapsUri'] as core.String?,
heightPx: json_['heightPx'] as core.int?,
name: json_['name'] as core.String?,
widthPx: json_['widthPx'] as core.int?,
);