/**
  * Retrieve the list of latest unread notifications
  *
  * @return \Magento\AdminNotification\Model\ResourceModel\Inbox\Collection
  */
 public function getLatestUnreadNotifications()
 {
     return $this->_notificationList->setPageSize(self::NOTIFICATIONS_NUMBER);
 }