CreatePaymentAttributes constructor

const CreatePaymentAttributes({
  1. required double amount,
  2. String? description,
  3. required String currency,
  4. String? statementDescriptor,
  5. required PaymentSource source,
})

Implementation

const CreatePaymentAttributes({
  required this.amount,
  this.description,
  required this.currency,
  this.statementDescriptor,
  required this.source,
});