updateHavePendingNotifications property
Describes whether there are some pending notification updates. Can be used to prevent application from killing, while there are some pending notifications
Implementation
UpdateHavePendingNotifications? get updateHavePendingNotifications {
  if (this is UpdateHavePendingNotifications) {
    return this as UpdateHavePendingNotifications;
  }
  return null;
}