Offer constructor
Offer({
- required int? finskyOfferType,
- required OfferListPrice? listPrice,
- required OfferListPrice? retailPrice,
- required bool? giftable,
Implementation
Offer({
required this.finskyOfferType,
required this.listPrice,
required this.retailPrice,
required this.giftable,
});