Partner constructor

Partner({
  1. String? id,
  2. String? logoUrl,
  3. String? partnerName,
  4. int? provider,
  5. String? vendorName,
  6. String? paymentVendorId,
  7. String? paymentPartnerId,
  8. String? paymentAcknowledgmentRoute,
  9. String? currency,
  10. String? status,
  11. String? vendorType,
  12. String? partnerType,
})

Implementation

Partner({
  this.id,
  this.logoUrl,
  this.partnerName,
  this.provider,
  this.vendorName,
  this.paymentVendorId,
  this.paymentPartnerId,
  this.paymentAcknowledgmentRoute,
  this.currency,
  this.status,
  this.vendorType,
  this.partnerType,
});