note method

void note(
  1. String topicName,
  2. String what,
  3. int seq
)

Notify server that a message or messages were read or received. Does NOT return promise

Implementation

void note(String topicName, String what, int seq) {
  _tinodeService.note(topicName, what, seq);
}