UpdateHavePendingNotifications constructor

const UpdateHavePendingNotifications({
  1. required bool haveDelayedNotifications,
  2. required bool haveUnreceivedNotifications,
  3. dynamic extra,
  4. int? clientId,
})

Describes whether there are some pending notification updates. Can be used to prevent application from killing, while there are some pending notifications

Implementation

const UpdateHavePendingNotifications({
  required this.haveDelayedNotifications,
  required this.haveUnreceivedNotifications,
  this.extra,
  this.clientId,
});