showOpacitySlider property

bool? get showOpacitySlider

Whether to show the opacity slider. null keeps the widget default (true).

Implementation

bool? get showOpacitySlider => _showOpacitySlider;
set showOpacitySlider (bool? value)

Implementation

set showOpacitySlider(bool? value) {
  if (_showOpacitySlider == value) return;
  _showOpacitySlider = value;
  notifyListeners();
}