enabled property
Whether or not the backdrop filter operation will be applied to the child.
Implementation
bool get enabled => _enabled;
Implementation
set enabled(bool value) {
if (enabled == value) {
return;
}
_enabled = value;
markNeedsPaint();
}