Price constructor

const Price({
  1. required String currency,
  2. required String total,
  3. required String base,
  4. required List<Fees> fees,
  5. required String grandTotal,
})

Implementation

const Price({
  required this.currency,
  required this.total,
  required this.base,
  required this.fees,
  required this.grandTotal,
});