deleteChatDirectLink method

Future<void> deleteChatDirectLink()

Deletes the current ChatDirectLink of the authenticated MyUser.

Implementation

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