addChatMember method

Future<void> addChatMember(
  1. ChatId chatId,
  2. UserId userId
)

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