fetchNotifications method

Future fetchNotifications()

Implementation

Future fetchNotifications() async {
  setBusy(true);
  await _internalNotificationService.fetchNotifications();
  setBusy(false);
  notifyListeners();
}