noteKeyPress method

void noteKeyPress(
  1. String topicName
)

Broadcast a key-press notification to topic subscribers. Used to show typing notifications "user X is typing..."

Implementation

void noteKeyPress(String topicName) async {
  await _tinodeService.noteKeyPress(topicName);
}