updateActiveNotifications property

UpdateActiveNotifications? updateActiveNotifications

Contains active notifications that was shown on previous application launches. This update is sent only if the message database is used. In that case it comes once before any updateNotification and updateNotificationGroup update

Implementation

UpdateActiveNotifications? get updateActiveNotifications {
  if (this is UpdateActiveNotifications) {
    return this as UpdateActiveNotifications;
  }
  return null;
}