FacilitySearchModel.ignoreDeleted constructor

  1. @MappableConstructor()
FacilitySearchModel.ignoreDeleted({
  1. List<String>? id,
  2. bool? isPermanent,
  3. String? usage,
  4. int? storageCapacity,
  5. String? tenantId,
  6. String? boundaryCode,
})

Implementation

@MappableConstructor()
FacilitySearchModel.ignoreDeleted({
  this.id,
  this.isPermanent,
  this.usage,
  this.storageCapacity,
  this.tenantId,
  super.boundaryCode,
}):  super(isDeleted: false);