AdditionalResultAttributeValue.fromJson constructor

AdditionalResultAttributeValue.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory AdditionalResultAttributeValue.fromJson(Map<String, dynamic> json) {
  return AdditionalResultAttributeValue(
    textWithHighlightsValue: json['TextWithHighlightsValue'] != null
        ? TextWithHighlights.fromJson(
            json['TextWithHighlightsValue'] as Map<String, dynamic>)
        : null,
  );
}