AmountData constructor

AmountData({
  1. String? value,
  2. double? formatted,
  3. String? currency,
  4. double? maxPayout,
})

Implementation

AmountData({
  this.value,
  this.formatted,
  this.currency,
  this.maxPayout,
});