import 'package:flutter/foundation.dart'; class YahooAuctionsItem { String name; String imageUrl = "https://lynnesbian.space/res/ceres/lesbun_full.jpg"; int price; int bids; // ending time bool buyItNow; bool autoExtension; YahooAuctionsItem({ @required this.name, @required this.price }); double getLocalPrice() { return this.price / 75.0; } }