Add option to show country name only in dialog

This commit is contained in:
herovickers
2019-03-14 22:47:15 +01:00
parent 58c23c9b09
commit b1386b2a8b
4 changed files with 16 additions and 4 deletions

View File

@@ -23,4 +23,6 @@ class CountryCode {
String toString() => "$dialCode";
String toLongString() => "$dialCode $name";
String toCountryStringOnly() => '$name';
}