addChatMember method
Adds an User to a Chat-group by the authority of the authenticated MyUser.
Implementation
Future<void> addChatMember(ChatId chatId, UserId userId) async {
Log.debug('addChatMember($chatId, $userId)', '$runtimeType');
await _chatRepository.addChatMember(chatId, userId);
}