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