class Rating { double? score; Rating({this.score}); factory Rating.fromJson(Map json) => Rating( score: (json['score'] as num?)?.toDouble(), ); }