PaymentData constructor

PaymentData({
  1. int? id,
  2. String? name,
  3. String? description,
  4. String? label,
  5. int? status,
  6. int? defaultSelected,
  7. dynamic selectType,
  8. List<Attribute>? attributes,
})

Implementation

PaymentData({
  this.id,
  this.name,
  this.description,
  this.label,
  this.status,
  this.defaultSelected,
  this.selectType,
  this.attributes,
});