deleteChatDirectLink method

Future<void> deleteChatDirectLink(
  1. ChatId chatId
)

Deletes the current ChatDirectLink of the given Chat-group.

Implementation

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