backdropKey property
The backdrop key that identifies the BackdropGroup this filter will read from.
The default value for the backdrop key is null
.
Implementation
BackdropKey? get backdropKey => _backdropKey;
Implementation
set backdropKey(BackdropKey? value) {
if (value == _backdropKey) {
return;
}
_backdropKey = value;
markNeedsPaint();
}