AddressModel constructor

AddressModel({
  1. AddressAdditionalFields? additionalFields,
  2. String? id,
  3. String? relatedClientReferenceId,
  4. String? doorNo,
  5. double? latitude,
  6. double? longitude,
  7. double? locationAccuracy,
  8. String? addressLine1,
  9. String? addressLine2,
  10. String? landmark,
  11. String? city,
  12. String? pincode,
  13. String? buildingName,
  14. String? street,
  15. String? boundaryType,
  16. String? boundary,
  17. bool? nonRecoverableError = false,
  18. String? tenantId,
  19. int? rowVersion,
  20. AddressType? type,
  21. LocalityModel? locality,
  22. AuditDetails? auditDetails,
  23. ClientAuditDetails? clientAuditDetails,
  24. bool? isDeleted = false,
})

Implementation

AddressModel({
  this.additionalFields,
  this.id,
  this.relatedClientReferenceId,
  this.doorNo,
  this.latitude,
  this.longitude,
  this.locationAccuracy,
  this.addressLine1,
  this.addressLine2,
  this.landmark,
  this.city,
  this.pincode,
  this.buildingName,
  this.street,
  this.boundaryType,
  this.boundary,
  this.nonRecoverableError = false,
  this.tenantId,
  this.rowVersion,
  this.type,
  this.locality,
  super.auditDetails,
  super.clientAuditDetails,
  super.isDeleted = false,
}) : super();