buypeeb-mobile/lib/models/yahoo_auctions_item.dart

20 lines
381 B
Dart
Raw Normal View History

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