style property

The SpotlightStyle of this spotlight.

Implementation

SpotlightStyle get style => _style;
void style=(SpotlightStyle style)

Implementation

set style(SpotlightStyle style) {
  if (_style != style) {
    if (_style.radius != style.radius) {
      _updateSize();
    }
    _style = style;
    notifyListeners();
  }
}