class Season { int? seasonId; String? title; Season({ this.seasonId, this.title, }); factory Season.fromJson(Map json) => Season( seasonId: json['season_id'] as int?, title: json['title'] as String?, ); }