onNotificationMessageNew method

void onNotificationMessageNew(
  1. Event event,
  2. StreamChannelListController controller
)

Function which gets called for the event EventType.notificationMessageNew.

This event is fired when a new message is created in a channel which we are not currently watching.

By default, this adds the channel and moves it to the top of list.

Implementation

void onNotificationMessageNew(
  Event event,
  StreamChannelListController controller,
) {
  onChannelVisible(event, controller);
}