ScrollConfigurationModifier constructor

const ScrollConfigurationModifier({
  1. Key? key,
  2. Key? modifierKey,
  3. Widget? child,
  4. 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,
});