buypeeb-mobile/lib/models/yahoo_auctions_item.dart

15 lines
239 B
Dart

import 'package:flutter/foundation.dart';
class YahooAuctionsItem {
String name;
int price;
YahooAuctionsItem({
@required this.name,
@required this.price
});
double getLocalPrice() {
return this.price / 75.0;
}
}