calculateGallery method
- 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);
}