normalizedCountryCode property
String
get
normalizedCountryCode
Returns the country code with '+' prefix.
Example: "+55"
Implementation
String get normalizedCountryCode {
return countryCode.startsWith('+') ? countryCode : '+$countryCode';
}