createChatDirectLink method

Future<void> createChatDirectLink(
  1. ChatDirectLinkSlug slug
)

Creates a new ChatDirectLink with the specified ChatDirectLinkSlug and deletes the current active ChatDirectLink of the authenticated MyUser (if any).

Implementation

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