set method

void set(
  1. Chat chat
)

Implementation

void set(Chat chat) {
  this.chat = chat;

  for (final element in _mentionedUsers) {
    element.set(chat);
  }
}