HouseholdMemberModel constructor

HouseholdMemberModel({
  1. HouseholdMemberAdditionalFields? additionalFields,
  2. String? id,
  3. String? householdId,
  4. String? householdClientReferenceId,
  5. String? individualId,
  6. String? individualClientReferenceId,
  7. required bool isHeadOfHousehold,
  8. bool? nonRecoverableError = false,
  9. required String clientReferenceId,
  10. String? tenantId,
  11. int? rowVersion,
  12. AuditDetails? auditDetails,
  13. ClientAuditDetails? clientAuditDetails,
  14. bool? isDeleted = false,
})

Implementation

HouseholdMemberModel({
  this.additionalFields,
  this.id,
  this.householdId,
  this.householdClientReferenceId,
  this.individualId,
  this.individualClientReferenceId,
  required this.isHeadOfHousehold,
  this.nonRecoverableError = false,
  required this.clientReferenceId,
  this.tenantId,
  this.rowVersion,
  super.auditDetails,
  super.clientAuditDetails,
  super.isDeleted = false,
}) : super();