FacilitySearchModel.ignoreDeleted constructor

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

Implementation

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