StripeCard constructor

StripeCard({
  1. String? number,
  2. String? cvc,
  3. int? expMonth,
  4. int? expYear,
  5. String? last4,
})

Implementation

StripeCard({
  this.number,
  this.cvc,
  this.expMonth,
  this.expYear,
  this.last4,
});