Setting constructor

Setting({
  1. String? id,
  2. String? createdAt,
  3. Campaign? campaign,
  4. Customer? customer,
  5. Email? email,
  6. Campaign? order,
  7. Product? product,
  8. Sms? sms,
  9. Currency? currency,
  10. bool? analytic,
})

Implementation

Setting(
    {this.id,
    this.createdAt,
    this.campaign,
    this.customer,
    this.email,
    this.order,
    this.product,
    this.sms,
    this.currency,
    this.analytic});