PrimaryScrollController.none constructor

const PrimaryScrollController.none({
  1. Key? key,
  2. required Widget child,
})

Creates a subtree without an associated ScrollController.

Implementation

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