isVisible property
Whether the decoration should be painted.
Defaults to true.
Implementation
bool get isVisible => _isVisible;
Implementation
set isVisible(bool value) {
if (value == _isVisible) {
return;
}
_isVisible = value;
controller.markNeedsPaint();
}