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