PrimaryScrollControllerModifier.none constructor

const PrimaryScrollControllerModifier.none({
  1. Key? key,
  2. Widget? child,
  3. Key? modifierKey,
})

Creates a subtree without an associated ScrollController.

Implementation

const PrimaryScrollControllerModifier.none({
  super.key,
  super.child,
  super.modifierKey,
})  : automaticallyInheritForPlatforms = const <TargetPlatform>{},
      scrollDirection = null,
      controller = null;