NotificationsController constructor

NotificationsController({
  1. required ARMOYUServices service,
  2. required String category,
  3. required String categorydetail,
  4. List<Notifications>? cachedNotificationsList,
  5. dynamic onNotificationsUpdated(
    1. List<Notifications> updatedNotifications
    )?,
})

Implementation

NotificationsController({
  required this.service,
  required this.category,
  required this.categorydetail,
  this.cachedNotificationsList,
  this.onNotificationsUpdated,
});