keepTyping method

  1. @override
Stream keepTyping(
  1. ChatId chatId
)
override

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

Implementation

@override
Stream<dynamic> keepTyping(ChatId chatId) {
  Log.debug('keepTyping($chatId)', '$runtimeType');

  if (chatId.isLocal) {
    return const Stream.empty();
  }

  return _graphQlProvider.keepTyping(chatId);
}