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