StorePrice constructor

const StorePrice({
  1. String? currencyCode,
  2. String? formattedBasePrice,
  3. String? formattedPrice,
  4. String? formattedRecurrencePrice,
  5. double? unformattedBasePrice,
  6. double? unformattedPrice,
  7. double? unformattedRecurrencePrice,
  8. bool? isOnSale,
  9. DateTime? saleEndsAt,
})

Creates a Store price value.

Implementation

const StorePrice({
  this.currencyCode,
  this.formattedBasePrice,
  this.formattedPrice,
  this.formattedRecurrencePrice,
  this.unformattedBasePrice,
  this.unformattedPrice,
  this.unformattedRecurrencePrice,
  this.isOnSale,
  this.saleEndsAt,
});