fetchNotifications method

Future fetchNotifications()

Implementation

Future fetchNotifications() async {
  try {
    _notifications = await _apiService.getModelListRequest(
        "v1/users/me/notifications", InternalNotification.fromJson);
  } catch (e) {
    print("Error getting notifications");
  }
}