markRead method

void markRead(
  1. String target,
  2. int atMs
)

Tell the server how far we have read, in milliseconds since the Unix epoch.

Implementation

void markRead(String target, int atMs) {
  _alive();
  command({'type': 'mark_read', 'target': target, 'at_ms': atMs});
}