fullCode property
String
get
fullCode
Get the full code of this localization. name
is not included
in this. Code can not be null.
Usually used with the Intl package. Learn how to use it here
Implementation
String get fullCode {
String name = code;
if (country != null) name += '_${country!.toUpperCase()}';
return name;
}