ExternalPaymentDetails constructor

const ExternalPaymentDetails({
  1. required String source,
  2. required String type,
  3. Money? sourceFeeMoney,
  4. String? sourceId,
})

@macro Stores details about an external payment. Contains only non-confidential information. For more information, see Take External Payments.

Implementation

const ExternalPaymentDetails({
  required this.source,
  required this.type,
  this.sourceFeeMoney,
  this.sourceId,
});