Address constructor
Address({})
Implementation
factory Address({
String? countryCode,
String? county,
String? description,
String? municipality,
String? number,
String? other,
String? postalCode,
String? province,
String? street,
required AddressType type,
}) = _Address;