links method
Returns DirectLinks owned by the authenticated MyUser or the specified Chat-group.
Implementation
Paginated<DirectLinkSlug, DirectLink> links({
UserId? userId,
ChatId? chatId,
}) {
Log.debug('links(userId: $userId, chatId: $chatId)', '$runtimeType');
return _linkRepository.links(userId: userId, chatId: chatId);
}