CreateTokenResponse constructor

const CreateTokenResponse({
  1. required bool success,
  2. String? tokenId,
  3. String? bin,
  4. String? maskedCardNumber,
  5. String? expirationDate,
  6. String? errorMessage,
})

Implementation

const CreateTokenResponse({
  required this.success,
  this.tokenId,
  this.bin,
  this.cardLogo,
  this.maskedCardNumber,
  this.expirationDate,
  this.errorMessage,
});