dart-sdk
dart-sdk copied to clipboard
Dart SKD for using Tinode messenger in dart and flutter applications.
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...

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...