PaymentMethodModel constructor

PaymentMethodModel({
  1. String? id,
  2. String? description,
  3. String? itemType,
  4. PaymentMethodData? data,
})

Implementation

PaymentMethodModel({
  this.id,
  this.description,
  this.itemType,
  this.data,
});