Large.fromJson constructor Null safety

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

Implementation

Large.fromJson(Map<String, dynamic> json) {
  minutesPlayed = json['minutesPlayed'];
  questionsAnswered = json['questionsAnswered'];
  questionsRightAnswered = json['questionsRightAnswered'];
}