onIntersection method
A stream which fires when element intersects with the scroll viewport.
NOTE: This requires IntersectionObserver. Check supportsIntersectionObserver from feature_detector.dart before using.
Implementation
@override
Stream<IntersectionObserverEntry> onIntersection(Element element) =>
_scrollHost!.onIntersection(element);