PaymentRequest constructor

PaymentRequest(
  1. String amount,
  2. String currencyCode,
  3. String notificationType,
  4. List<String>? paymentMethodType, {
  5. String? description,
  6. String? expiresAt,
  7. Customer? customer,
  8. String? customerGid,
})

Implementation

PaymentRequest(this.amount, this.currencyCode, this.notificationType, this.paymentMethodType,
    {this.description,
    this.expiresAt,
    this.customer,
    this.customerGid});