country property

Country? country

The currently selected country value stored in the controller.

Implementation

Country? get country => countryNotifier.value;
void country=(Country? newValue)

Implementation

set country(Country? newValue) {
  countryNotifier.value = newValue;
}