noteRead method
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!);
}
}
Send a 'read' receipt. Wrapper for Tinode.noteRead
void noteRead(int? seq) {
this.seq = seq ?? _maxSeq;
if (this.seq! > 0) {
_note('read', this.seq!);
}
}