ProductVariantSearchModel.ignoreDeleted constructor

  1. @MappableConstructor()
ProductVariantSearchModel.ignoreDeleted({
  1. List<String>? id,
  2. List<String>? productId,
  3. String? sku,
  4. String? variation,
  5. String? tenantId,
  6. String? boundaryCode,
})

Implementation

@MappableConstructor()
ProductVariantSearchModel.ignoreDeleted({
  this.id,
  this.productId,
  this.sku,
  this.variation,
  this.tenantId,
  super.boundaryCode,
}):  super(isDeleted: false);