Easy.fromJson constructor Null safety

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

Implementation

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