AddressData constructor

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

Implementation

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