2020-09-29 15:31:31 +00:00
|
|
|
import 'package:flutter/foundation.dart';
|
|
|
|
|
|
|
|
class YahooAuctionsItem {
|
|
|
|
String name;
|
2020-09-30 11:38:07 +00:00
|
|
|
String imageUrl = "https://lynnesbian.space/res/ceres/lesbun_full.jpg";
|
2020-09-29 15:31:31 +00:00
|
|
|
int price;
|
2020-09-30 11:38:07 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|