CardTokenizationRequest constructor

CardTokenizationRequest({
  1. String? type,
  2. required String number,
  3. required int expiryMonth,
  4. required int expiryYear,
  5. String? cvv,
  6. String? name,
  7. BillingAddress? billingAddress,
  8. Phone? phone,
})

Implementation

CardTokenizationRequest({
  this.type,
  required this.number,
  required this.expiryMonth,
  required this.expiryYear,
  this.cvv,
  this.name,
  this.billingAddress,
  this.phone,
});