getUnreadNotificationCount method

int? getUnreadNotificationCount()

Implementation

int? getUnreadNotificationCount() {
  if(SessionManagerNew.getInt(notificationCount) !=null)
  {
    return SessionManagerNew.getInt(notificationCount);
  }
  else
  {
    return 0;
  }

}