EsgSeries.fromJson constructor

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

Implementation

EsgSeries.fromJson(Map<String, dynamic> json) {
  score = json['score']?.toDouble();
  date = json['date'];
}