send_hotkey method

Future<Online> send_hotkey(
  1. Key key, {
  2. List<Key>? modifiers = null,
})

Implementation

Future<Online> send_hotkey(
  Key key, {
  List<Key>? modifiers = null,
}) async {
  var Online = await this;
  return Online.send_hotkey(
    key,
    modifiers: modifiers,
  );
}