ScrollConfiguration constructor
Creates a widget that controls how Scrollable widgets behave in a subtree.
The behavior
and child
arguments must not be null.
Implementation
const ScrollConfiguration({
Key key,
@required this.behavior,
@required Widget child,
}) : super(key: key, child: child);