createChatDirectLink method

Future<void> createChatDirectLink(
  1. ChatId chatId,
  2. ChatDirectLinkSlug slug
)

Creates a new ChatDirectLink with the specified ChatDirectLinkSlug and deletes the current active ChatDirectLink of the given Chat-group (if any).

Implementation

Future<void> createChatDirectLink(
  ChatId chatId,
  ChatDirectLinkSlug slug,
) async {
  Log.debug('createChatDirectLink($chatId, $slug)', '$runtimeType');
  await _chatRepository.createChatDirectLink(chatId, slug);
}