class SteamTopSeller { String? imageSrc; String? title; String? price; String? publishDate; String? discount; SteamTopSeller(this.imageSrc, this.title, this.price, this.publishDate, this.discount); fromJson(Map json) { this.imageSrc = json['imageSrc']; this.title = json['title']; this.price = json['price']; this.publishDate = json['publishDate']; this.discount = json['discount']; } Map toJson() { return { 'imageSrc': this.imageSrc, 'title': this.title, 'price': this.price, 'publishDate': this.publishDate, 'discount': this.discount, }; } }