UpdateActiveNotifications constructor

const UpdateActiveNotifications({
  1. required List<NotificationGroup> groups,
  2. dynamic extra,
  3. int? clientId,
})

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

const UpdateActiveNotifications({
  required this.groups,
  this.extra,
  this.clientId,
});