WalletsTokenizationResponse constructor

WalletsTokenizationResponse({
  1. required String type,
  2. required String token,
  3. required String expiresOn,
  4. required int expiryMonth,
  5. required int expiryYear,
  6. String? scheme,
  7. required String last4,
  8. required String bin,
  9. String? cardType,
  10. String? cardCategory,
  11. String? issuer,
  12. String? issuerCountry,
  13. String? productId,
  14. String? productType,
})

Implementation

WalletsTokenizationResponse({
  required this.type,
  required this.token,
  required this.expiresOn,
  required this.expiryMonth,
  required this.expiryYear,
  this.scheme,
  required this.last4,
  required this.bin,
  this.cardType,
  this.cardCategory,
  this.issuer,
  this.issuerCountry,
  this.productId,
  this.productType,
});