talkjs / talkjs-flutter

Flutter SDK for the TalkJS Chat API
https://talkjs.com
BSD 3-Clause "New" or "Revised" License
9 stars 13 forks source link

Implement new Feed Filters #26

Closed bugnano closed 1 year ago

bugnano commented 1 year ago

This PR adds the lastMessageTs and subject fields to the ConversationPredicate.

For reviewing you can go commit by commit, as I implemented each field as a separate commit.

I have a question though: In the JS SDK we're using UNIX timestamps (numbers) for lastMessageTs. In this PR I'm using the same UNIX timestamps, but it could be useful to use Dart's DateTime type instead. What do you think?