PaymentMethodCardChecks constructor

const PaymentMethodCardChecks({
  1. String? addressLine1Check,
  2. String? addressPostalCodeCheck,
  3. String? cvcCheck,
})

Checks on Card address and CVC if provided.

Implementation

const PaymentMethodCardChecks({
  this.addressLine1Check,
  this.addressPostalCodeCheck,
  this.cvcCheck,
});