NotificationQueryLogic constructor

NotificationQueryLogic({
  1. Duration queryDuration = const Duration(minutes: 30),
  2. required String url,
})

Implementation

NotificationQueryLogic(
    {this.queryDuration = const Duration(minutes: 30), required this.url}) {
  requestLogic = RequestLogic();
  notificationIconLogic = NotificationIconLogic.instance;
}