atmosphereBlur property

double get atmosphereBlur

Blur radius for the atmospheric glow

Implementation

double get atmosphereBlur => _atmosphereBlur;
set atmosphereBlur (double value)

Implementation

set atmosphereBlur(double value) {
  if (_atmosphereBlur != value) {
    _atmosphereBlur = value;
    notifyListeners();
  }
}