GoogleMapsPlacesV1ContextualContentJustificationReviewJustification.fromJson constructor

GoogleMapsPlacesV1ContextualContentJustificationReviewJustification.fromJson(
  1. Map json_
)

Implementation

GoogleMapsPlacesV1ContextualContentJustificationReviewJustification.fromJson(
  core.Map json_,
) : this(
      highlightedText: json_.containsKey('highlightedText')
          ? GoogleMapsPlacesV1ContextualContentJustificationReviewJustificationHighlightedText.fromJson(
              json_['highlightedText'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      review: json_.containsKey('review')
          ? GoogleMapsPlacesV1Review.fromJson(
              json_['review'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );