ScrollNotificationObserver constructor Null safety
Create a ScrollNotificationObserver.
The child parameter must not be null.
Implementation
const ScrollNotificationObserver({
Key? key,
required this.child,
}) : assert(child != null), super(key: key);