Extract the hits relative to visitor
List<Hit> extractHitsWithVisitorId(String visitorId) { return fsQueue.where((element) { return (element.visitorId == visitorId); }).toList(); }