Module constructor

Module({
  1. String? id,
  2. String? createdAt,
  3. Campaign? campaign,
  4. Customer? customer,
  5. Integration? integration,
  6. Campaign? order,
  7. Product? product,
  8. Stock? stock,
  9. Campaign? subStore,
})

Implementation

Module(
    {this.id,
    this.createdAt,
    this.campaign,
    this.customer,
    this.integration,
    this.order,
    this.product,
    this.stock,
    this.subStore});