shouldProcessGlobalModifierEvent abstract method

bool shouldProcessGlobalModifierEvent({
  1. required bool enabled,
  2. required bool modifierKey,
  3. required bool pressed,
  4. required FdcGridCellRef? hoverCell,
  5. required bool hasActiveCellEditor,
  6. required bool hasGridTextInputFocus,
})

Whether a global modifier transition should update range-selection input state.

Implementations use the supplied editor, focus, hover, and enablement state to avoid intercepting modifier input owned by active text editors.

Implementation

bool shouldProcessGlobalModifierEvent({
  required bool enabled,
  required bool modifierKey,
  required bool pressed,
  required FdcGridCellRef? hoverCell,
  required bool hasActiveCellEditor,
  required bool hasGridTextInputFocus,
});