toStringWithCountry method
Implementation
String toStringWithCountry() {
return code.isEmpty
? '${street.withoutAccents}\n${city.withoutAccents}\n${country.toString()}'
: '${street.withoutAccents}\n$code ${city.withoutAccents}\n${country.toString()}';
}