CampaignQuery constructor

CampaignQuery({
  1. int? page,
  2. int? amount,
  3. String? storeId,
  4. CampaignType? type,
  5. CampaignSort? sort,
})

Implementation

CampaignQuery({
  super.page,
  super.amount,
  this.storeId,
  this.type,
  this.sort,
});