PaymentConsent constructor

PaymentConsent({
  1. String? id,
  2. String? requestId,
  3. String? customerId,
  4. PaymentMethod? paymentMethod,
  5. String? status,
  6. NextTriggeredBy? nextTriggeredBy,
  7. MerchantTriggerReason? merchantTriggerReason,
  8. bool requiresCvc = false,
  9. String? createdAt,
  10. String? updatedAt,
  11. String? clientSecret,
})

Implementation

PaymentConsent({
  this.id,
  this.requestId,
  this.customerId,
  this.paymentMethod,
  this.status,
  this.nextTriggeredBy,
  this.merchantTriggerReason,
  this.requiresCvc = false,
  this.createdAt,
  this.updatedAt,
  this.clientSecret,
});