OmegaCreditCardModel constructor

OmegaCreditCardModel(
  1. String cardNumber,
  2. String expiryDate,
  3. String cardHolderName,
  4. String cvvCode,
  5. bool isCvvFocused,
)

Implementation

OmegaCreditCardModel(
  this.cardNumber,
  this.expiryDate,
  this.cardHolderName,
  this.cvvCode,
  this.isCvvFocused,
);