isAltPressed property

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

Returns true if a ALT 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.isAltPressed instead.

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

Implementation

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