CardParameters constructor

CardParameters({
  1. List<CardAuthMethods>? allowedCardsMethods,
  2. bool allowPrepaidCards = true,
  3. bool allowCreditCards = true,
  4. bool? assuranceDetailsRequired,
  5. bool? billingAddressRequired,
  6. BillingAddressParameters? billingAddressParameters,
})

This object allows you to define the accepted payment card types. Google filters a payer's available payment cards based on your configured options.

Implementation

CardParameters({
  this.allowedCardsMethods,
  this.allowPrepaidCards = true,
  this.allowCreditCards = true,
  this.assuranceDetailsRequired,
  this.billingAddressRequired,
  this.billingAddressParameters,
});