PgrAddressModel constructor

PgrAddressModel({
  1. String? tenantId,
  2. String? relatedClientReferenceId,
  3. String? doorNo,
  4. String? plotNo,
  5. String? id,
  6. String? landmark,
  7. String? city,
  8. String? district,
  9. String? region,
  10. String? state,
  11. String? country,
  12. String? pincode,
  13. String? buildingName,
  14. String? street,
  15. LocalityModel? locality,
  16. GeoLocation? geoLocation,
  17. Map<String, dynamic>? additionDetails,
  18. bool? isDeleted,
  19. int? rowVersion,
  20. AuditDetails? auditDetails,
})

Implementation

PgrAddressModel({
  this.tenantId,
  this.relatedClientReferenceId,
  this.doorNo,
  this.plotNo,
  this.id,
  this.landmark,
  this.city,
  this.district,
  this.region,
  this.state,
  this.country,
  this.pincode,
  this.buildingName,
  this.street,
  this.locality,
  this.geoLocation,
  this.additionDetails,
  this.isDeleted,
  this.rowVersion,
  super.auditDetails,

}) : super(isDeleted: false);