updateReads method

void updateReads()

Recalculates the reads to represent the actual messages.

Implementation

void updateReads() {
  Log.debug('updateReads()', '$runtimeType($id)');

  for (LastChatRead e in chat.value.lastReads) {
    _updateReadFor(e.memberId, e.at);
  }
}