isControlPressed property

  1. @Deprecated('Use HardwareKeyboard.instance.isControlPressed instead. ' 'This feature was deprecated after v3.18.0-2.0.pre.')
bool isControlPressed

Returns true if a CTRL modifier key was pressed at the time of this event, regardless of which side of the keyboard it is on.

This method is deprecated and will be removed. Use HardwareKeyboard.isControlPressed instead.

Use isModifierPressed if you need to know which control key was pressed.

Implementation

@Deprecated(
  'Use HardwareKeyboard.instance.isControlPressed instead. '
  'This feature was deprecated after v3.18.0-2.0.pre.',
)
bool get isControlPressed => isModifierPressed(ModifierKey.controlModifier);