HistogramEntry.fromJson constructor

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

Implementation

factory HistogramEntry.fromJson(Map<String, dynamic> json) {
  return HistogramEntry(
    count: json['Count'] as int?,
    value: json['Value'] as double?,
  );
}