getPanelAction static method

PanelActionFn? getPanelAction(
  1. String elementKey
)

获取指定 elementKey 的独立面板动作

Returns the panel action for the given elementKey, or null if none is registered.

Implementation

static PanelActionFn? getPanelAction(String elementKey) {
  _ensureInitialized();
  return _panelActions[elementKey];
}