MortgagePropertyAddress constructor

MortgagePropertyAddress({
  1. required String? city,
  2. required String? country,
  3. required String? postalCode,
  4. required String? region,
  5. required String? street,
})

Implementation

MortgagePropertyAddress({
  required this.city,
  required this.country,
  required this.postalCode,
  required this.region,
  required this.street,
});