AmountWithBreakdown constructor

const AmountWithBreakdown({
  1. required String currencyCode,
  2. required String value,
  3. AmountBreakdown? breakdown,
})

Implementation

const AmountWithBreakdown({
  required this.currencyCode,
  required this.value,
  this.breakdown,
});