Offer constructor

Offer({
  1. required int? finskyOfferType,
  2. required OfferListPrice? listPrice,
  3. required OfferListPrice? retailPrice,
  4. required bool? giftable,
})

Implementation

Offer({
  required this.finskyOfferType,
  required this.listPrice,
  required this.retailPrice,
  required this.giftable,
});