ProductSearchModel constructor

ProductSearchModel({
  1. String? id,
  2. String? type,
  3. List<String>? name,
  4. List<String>? manufacturer,
  5. List<String>? clientReferenceId,
  6. String? tenantId,
  7. String? boundaryCode,
  8. bool? isDeleted = false,
})

Implementation

ProductSearchModel({
  this.id,
  this.type,
  this.name,
  this.manufacturer,
  this.clientReferenceId,
  this.tenantId,
  super.boundaryCode,
  super.isDeleted,
}) : super();