deleteChatDirectLink method

Future<void> deleteChatDirectLink(
  1. DirectLinkSlug slug
)

Deletes the current DirectLink of the given Chat-group.

Implementation

Future<void> deleteChatDirectLink(DirectLinkSlug slug) async {
  await _linkService.updateGroupLink(chatId, null);
}