HouseholdSearchModel.ignoreDeleted constructor

  1. @MappableConstructor()
HouseholdSearchModel.ignoreDeleted({
  1. List<String>? id,
  2. int? memberCount,
  3. double? latitude,
  4. double? longitude,
  5. double? maxRadius,
  6. bool? isProximityEnabled,
  7. List<String>? clientReferenceId,
  8. String? tenantId,
  9. String? boundaryCode,
})

Implementation

@MappableConstructor()
HouseholdSearchModel.ignoreDeleted({
  this.id,
  this.memberCount,
  this.latitude,
  this.longitude,
  this.maxRadius,
  this.isProximityEnabled,
  this.clientReferenceId,
  this.tenantId,
  super.boundaryCode,
}) : super(isDeleted: false);