toData method

ChatData toData([
  1. RecentChatsCursor? recent,
  2. FavoriteChatsCursor? favorite
])

Constructs a new ChatData from this ChatMixin.

Implementation

ChatData toData([RecentChatsCursor? recent, FavoriteChatsCursor? favorite]) {
  final lastItem = this.lastItem?.toDto();
  final lastReadItem = this.lastReadItem?.toDto();
  return ChatData(toDto(recent, favorite), lastItem, lastReadItem);
}