Denomination constructor

Denomination({
  1. String? value,
  2. String? currency,
  3. String? pogId,
  4. String? offerId,
  5. bool isSelected = false,
})

Implementation

Denomination({
  this.value,
  this.currency,
  this.pogId,
  this.offerId,
  this.isSelected = false
});