FacilitySearchModel constructor

FacilitySearchModel({
  1. List<String>? id,
  2. bool? isPermanent,
  3. String? usage,
  4. int? storageCapacity,
  5. String? tenantId,
  6. String? boundaryCode,
  7. bool? isDeleted = false,
})

Implementation

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