PaymentMethod constructor

PaymentMethod({
  1. int? id,
  2. Map<String, String>? name,
  3. bool? redirect,
})

Implementation

PaymentMethod({
  this.id,
  this.name,
  this.redirect,
  this.logo
});