selectedCountry method

CountryPickerBuilder selectedCountry(
  1. Country? country
)

Set the selected country

Implementation

CountryPickerBuilder selectedCountry(Country? country) {
  _selectedCountry = country;
  return this;
}