DataModel constructor

DataModel({
  1. String? status,
  2. String? cvc,
  3. Card? card,
  4. Error? error,
})

Implementation

DataModel({
  this.status,
  this.cvc,
  this.card,
  this.error,
});