IsKeyUp method

bool IsKeyUp(
  1. KeyboardKey key
)

Check if a key is NOT being pressed

Implementation

bool IsKeyUp(
  KeyboardKey key,
) => run(
  () => _debugLabels.IsKeyUp(key),
  () => _flat.IsKeyUp(
    key.value,
  ),
);