addMention method

void addMention(
  1. String displayName,
  2. String authorId
)

Implementation

void addMention(String displayName, String authorId) {
  final mentions = Map.of(state.mentions);
  mentions[displayName] = authorId;
  state = state.copyWith(mentions: mentions);
}