NameSearchModel.ignoreDeleted constructor

  1. @MappableConstructor()
NameSearchModel.ignoreDeleted({
  1. String? id,
  2. int? offset,
  3. int? limit,
  4. String? givenName,
  5. String? familyName,
  6. String? otherNames,
  7. String? tenantId,
  8. String? boundaryCode,
})

Implementation

@MappableConstructor()
NameSearchModel.ignoreDeleted({
  this.id,
  this.offset,
  this.limit,
  this.givenName,
  this.familyName,
  this.otherNames,
  this.tenantId,
  super.boundaryCode,
}):  super(isDeleted: false);