StoreSettingDTO constructor

StoreSettingDTO({
  1. String? id,
  2. String? createdAt,
  3. String? updatedAt,
  4. bool? isActive,
  5. bool? isDeleted,
  6. Campaign? campaign,
  7. Currency? currency,
  8. Customer? customer,
  9. Email? email,
  10. Order? order,
  11. Product? product,
  12. Sms? sms,
  13. String? analytic,
})

Implementation

StoreSettingDTO(
    {super.id,
    super.createdAt,
    super.updatedAt,
    super.isActive,
    super.isDeleted,
    this.campaign,
    this.currency,
    this.customer,
    this.email,
    this.order,
    this.product,
    this.sms,
    this.analytic});