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 is pressed, regardless of which side of the keyboard it is on.

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

Use isKeyPressed 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 {
  return isKeyPressed(LogicalKeyboardKey.controlLeft) || isKeyPressed(LogicalKeyboardKey.controlRight);
}