press_key method

SapTransaction press_key(
  1. String name,
  2. Key key, {
  3. List<Key>? modifiers,
})

Implementation

SapTransaction press_key(String name, Key key, {List<Key>? modifiers}) {
  this.fields[name] = NoKeyboardShortcut(key, modifiers: modifiers);
  return this;
}