notificationGroupTypeMentions property

NotificationGroupTypeMentions? notificationGroupTypeMentions

A group containing notifications of type notificationTypeNewMessage and notificationTypeNewPushMessage with unread mentions of the current user, replies to their messages, or a pinned message

Implementation

NotificationGroupTypeMentions? get notificationGroupTypeMentions {
  if (this is NotificationGroupTypeMentions) {
    return this as NotificationGroupTypeMentions;
  }
  return null;
}