PurchaseUnitRequest constructor

const PurchaseUnitRequest({
  1. String? referenceId,
  2. required AmountWithBreakdown amount,
  3. Payee? payee,
  4. PaymentInstruction? paymentInstruction,
  5. String? description,
  6. String? customId,
  7. String? invoiceId,
  8. String? softDescriptor,
})

Implementation

const PurchaseUnitRequest({
  this.referenceId,
  required this.amount,
  this.payee,
  this.paymentInstruction,
  this.description,
  this.customId,
  this.invoiceId,
  this.softDescriptor,
});