InsightResultValue.fromJson constructor

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

Implementation

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