country property

Country? get country

Returns the associated Country object if countryCode is present.

Implementation

Country? get country =>
    countryCode != null ? WorldPickerService.fromIsoCode(countryCode!) : null;