enabled property

bool get enabled

Whether or not the backdrop filter operation will be applied to the child.

Implementation

bool get enabled => _enabled;
set enabled (bool value)

Implementation

set enabled(bool value) {
  if (enabled == value) {
    return;
  }
  _enabled = value;
  markNeedsPaint();
}