sendChord method

Future<void> sendChord(
  1. Iterable<String> chordToSend
)

Simulate pressing many keys at once as a 'chord'.

Implementation

Future<void> sendChord(Iterable<String> chordToSend) => _client.send(
    _handler.keyboard.buildSendChordRequest(chordToSend),
    _handler.keyboard.parseSendChordResponse);