MerchantData constructor

MerchantData({
  1. int? id,
  2. String? uuid,
  3. String? depositUserId,
  4. String? name,
  5. String? description,
  6. String? country,
  7. String? returnPolicy,
  8. String? shippingPolicy,
  9. dynamic fullRefund,
  10. dynamic shippingFee,
  11. dynamic taxPercent,
  12. dynamic taxId,
  13. dynamic contactAddress,
  14. dynamic contactInfo,
  15. String? state,
  16. String? city,
  17. String? streetAddress,
  18. String? zip,
  19. dynamic category,
  20. String? currency,
  21. String? supportEmail,
  22. dynamic meta,
  23. String? status,
  24. dynamic deletedAt,
  25. DateTime? createdAt,
  26. DateTime? updatedAt,
  27. String? walletAmount,
  28. String? walletAmountPending,
})

Implementation

MerchantData({
    this.id,
    this.uuid,
    this.depositUserId,
    this.name,
    this.description,
    this.country,
    this.returnPolicy,
    this.shippingPolicy,
    this.fullRefund,
    this.shippingFee,
    this.taxPercent,
    this.taxId,
    this.contactAddress,
    this.contactInfo,
    this.state,
    this.city,
    this.streetAddress,
    this.zip,
    this.category,
    this.currency,
    this.supportEmail,
    this.logo,
    this.meta,
    this.status,
    this.deletedAt,
    this.createdAt,
    this.updatedAt,
    this.walletAmount,
    this.walletAmountPending,
});