Placeholder constructor

Placeholder({
  1. String? cardNumber,
  2. String? expiryDate,
  3. String? cvv,
})

Implementation

Placeholder({
  this.cardNumber,
  this.expiryDate,
  this.cvv,
});