PaymentMethod constructor

const PaymentMethod({
  1. int? id,
  2. String? title,
  3. String? reference,
  4. int? countryId,
  5. String? countryCode,
  6. String? currencyCode,
  7. bool? isActive,
  8. String? fees,
  9. String? type,
})

Implementation

const PaymentMethod({
  this.id, this.title, this.logo, this.reference,
  this.countryId,
  this.countryCode,
  this.currencyCode,
  this.isActive,
  this.fees,
  this.type
});