noteRead method

void noteRead(
  1. int? seq
)

Send a 'read' receipt. Wrapper for Tinode.noteRead

Implementation

void noteRead(int? seq) {
  this.seq = seq ?? _maxSeq;
  if (this.seq! > 0) {
    _note('read', this.seq!);
  }
}