defaultCountry function
Implementation
Country defaultCountry() {
return Country(
phoneCode: '1',
countryCode: 'US',
e164Sc: 1,
geographic: true,
level: 1,
name: 'Untied States',
example: '+1-123456789',
displayName: 'Untied States (US) [+1]',
displayNameNoCountryCode: 'Untied States (US)',
e164Key: '1-US-0',
fullExampleWithPlusSign: '+1-9123456789',
);
}