calculateGallery method

Paginated<ChatItemId, Rx<ChatItem>> calculateGallery(
  1. ChatItem? item
)

Returns a Paginated of ChatItems containing a collection of all the media files of this chat.

Implementation

Paginated<ChatItemId, Rx<ChatItem>> calculateGallery(ChatItem? item) {
  return chat!.attachments(item: item?.id);
}