keepTyping method

Stream keepTyping(
  1. ChatId chatId
)

Notifies ChatMembers about the authenticated MyUser typing in the specified Chat at the moment.

Implementation

Stream<dynamic> keepTyping(ChatId chatId) {
  Log.debug('keepTyping($chatId)', '$runtimeType');
  return _chatRepository.keepTyping(chatId);
}