NameSearchModel constructor

NameSearchModel({
  1. String? id,
  2. int? offset,
  3. int? limit,
  4. String? givenName,
  5. String? familyName,
  6. String? otherNames,
  7. String? tenantId,
  8. String? boundaryCode,
  9. bool? isDeleted = false,
})

Implementation

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