key_up method

Future<Online> key_up(
  1. Key key, {
  2. bool show = true,
})

Implementation

Future<Online> key_up(Key key, {bool show = true}) async {
  if (show) Show.action('key up', key.toString());
  await (await page).keyboard.up(key);
  return this;
}