surfaceLightingEnabled property

bool get surfaceLightingEnabled

Whether to enable 3D surface lighting (creates realistic shading effect)

Implementation

bool get surfaceLightingEnabled => _surfaceLightingEnabled;
set surfaceLightingEnabled (bool value)

Implementation

set surfaceLightingEnabled(bool value) {
  if (_surfaceLightingEnabled != value) {
    _surfaceLightingEnabled = value;
    notifyListeners();
  }
}