Statistics.fromJson constructor
Implementation
factory Statistics.fromJson(Map<String, dynamic> json) {
return Statistics(
avg: json['Avg'] as double?,
count: json['Count'] as int?,
countDistinct: json['CountDistinct'] as int?,
countNan: json['CountNan'] as int?,
countNull: json['CountNull'] as int?,
max: json['Max'] as String?,
min: json['Min'] as String?,
stddev: json['Stddev'] as double?,
);
}