action property
Implementation
@override
MenuAction? get action => _action;
Implementation
@override
set action(MenuAction? value) {
if (value == _action) return;
_action = value;
_actionWithContext = (_) => value!();
notifyPropertyChange(#action, _action, value);
}