DiscountDisplayInfoAndroid constructor

const DiscountDisplayInfoAndroid({
  1. DiscountAmountAndroid? discountAmount,
  2. int? percentageDiscount,
})

Implementation

const DiscountDisplayInfoAndroid({
  /// Absolute discount amount details
  /// Only returned for fixed amount discounts
  this.discountAmount,
  /// Percentage discount (e.g., 33 for 33% off)
  /// Only returned for percentage-based discounts
  this.percentageDiscount,
});