keepTyping method
- 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);
}