notifyChannelMessageUpserted method

void notifyChannelMessageUpserted(
  1. Message message
)

Publishes a message that should refresh channel previews.

Implementation

void notifyChannelMessageUpserted(Message message) {
  channelMessageUpsertedNotifier.value = message;
  notifyChannelNeedsRefresh();
  notifyListeners();
}