GroundingAttribution.fromJson constructor
Implementation
factory GroundingAttribution.fromJson(Map<String, dynamic> json) {
return GroundingAttribution(
sourceId: decode(json['sourceId'], AttributionSourceId.fromJson),
content: decode(json['content'], Content.fromJson),
);
}