PaymentMethod constructor

PaymentMethod({
  1. required String type,
  2. String? identifier,
  3. String? brand,
  4. CardInfo? creditCardInfo,
  5. CardInfo? debitCardInfo,
})

Implementation

PaymentMethod({
  required this.type,
  this.identifier,
  this.brand,
  this.creditCardInfo,
  this.debitCardInfo,
});