class Show { int? wideScreen; Show({this.wideScreen}); factory Show.fromJson(Map json) => Show( wideScreen: json['wide_screen'] as int?, ); }