selectedCountry property

Country selectedCountry

Implementation

Country get selectedCountry => _selectedCountry;
void selectedCountry=(Country country)

Implementation

set selectedCountry(Country country) {
  _selectedCountry = country;
  notifyListeners();
}