PayMongoTokenAttributes constructor

const PayMongoTokenAttributes({
  1. required String number,
  2. required int expireMonth,
  3. required int expireYear,
  4. required String cvc,
  5. PayMongoBilling? billing,
  6. String? name,
  7. String? email,
  8. String? phone,
})

Implementation

const PayMongoTokenAttributes({
  required this.number,
  required this.expireMonth,
  required this.expireYear,
  required this.cvc,
  this.billing,
  this.name,
  this.email,
  this.phone,
});