noteKeyPress method

void noteKeyPress()

Send a key-press notification. Wrapper for Tinode.noteKeyPress

Implementation

void noteKeyPress() {
  if (isSubscribed) {
    _tinodeService.noteKeyPress(name ?? '');
  } else {
    throw Exception('INFO: Cannot send notification in inactive topic');
  }
}