selectedCountry property

  1. @override
CountryListResponse? selectedCountry
inherited

Implementation

@override
CountryListResponse? get selectedCountry {
  _$selectedCountryAtom.reportRead();
  return super.selectedCountry;
}
  1. @override
void selectedCountry=(CountryListResponse? value)
inherited

Implementation

@override
set selectedCountry(CountryListResponse? value) {
  _$selectedCountryAtom.reportWrite(value, super.selectedCountry, () {
    super.selectedCountry = value;
  });
}