InsightResultValue.fromJson constructor
Implementation
factory InsightResultValue.fromJson(Map<String, dynamic> json) {
return InsightResultValue(
count: json['Count'] as int,
groupByAttributeValue: json['GroupByAttributeValue'] as String,
);
}