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