dart-sdk icon indicating copy to clipboard operation
dart-sdk copied to clipboard

Dart SKD for using Tinode messenger in dart and flutter applications.

Results 7 dart-sdk issues
Sort by recently updated
recently updated
newest added

After login, I cannot figure out how to do these things: * Get list of topic * Find other user * Get list message of topic * Listen to the...

![image](https://user-images.githubusercontent.com/72398854/148160039-d2e243c2-45d9-4b0a-9961-a3e77e63e789.png)

lib/src/models/server-messages.dart ``` static PresMessage fromMessage(Map msg) { return PresMessage( topic: msg['msg'], src: msg['src'], what: msg['what'], seq: msg['seq'], clear: msg['clear'], delseq: msg['delseq'] != null && msg['delseq'].length != null ? msg['delseq'].map((seq) =>...

Trying to understand this method but have no clue. Could you explain the purpose of the method? ``` /// Calculate ranges of missing messages void _updateDeletedRanges() { var ranges =...

First create a new group, then add new members to it

I didn't find the corresponding function in the source code。By the way, when will the documentation be complete?

Hi, I'm coming again. I initialized the Tincode as below codes on app startup: ``` if (tinode == null){ tinode = Tinode( 'Wow', ConnectionOptions(WebSocketUtils.WsUrl, WebSocketUtils.ApiKey, secure: true), ApiConstant.isDebug); } CtrlMessage...