tableMenus property
Implementation
@Input()
set tableMenus(List<String> value) {
final normalizedValue = List<String>.unmodifiable(value);
if (_listEquals(_tableMenus, normalizedValue)) {
return;
}
_tableMenus = normalizedValue;
_handleToolbarConfigurationInputChanged(syncToolbarItems: false);
}