lightAngle property

double get lightAngle

Angle of the light source in degrees (-45 = top-left, 0 = right, 90 = bottom, etc.)

Implementation

double get lightAngle => _lightAngle;
set lightAngle (double value)

Implementation

set lightAngle(double value) {
  if (_lightAngle != value) {
    _lightAngle = value;
    notifyListeners();
  }
}