showAtmosphere property
bool
get
showAtmosphere
Whether to show the atmospheric glow around the globe
Implementation
bool get showAtmosphere => _showAtmosphere;
set
showAtmosphere
(bool value)
Implementation
set showAtmosphere(bool value) {
if (_showAtmosphere != value) {
_showAtmosphere = value;
notifyListeners();
}
}