enableDestructiveToolbarRebuild property
bool
get
enableDestructiveToolbarRebuild
Implementation
bool get enableDestructiveToolbarRebuild =>
_enableDestructiveToolbarRebuild;
Implementation
@Input()
set enableDestructiveToolbarRebuild(bool value) {
final previousValue = _enableDestructiveToolbarRebuild;
_enableDestructiveToolbarRebuild = value;
if (!_initialized || !value || previousValue == value) {
return;
}
_handleToolbarConfigurationInputChanged();
}