tableMenus property

List<String> get tableMenus

Implementation

List<String> get tableMenus => _tableMenus;
  1. @Input.new()
set tableMenus (List<String> value)

Implementation

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