buildCustomScrollView method

CustomScrollView buildCustomScrollView(
  1. ScrollPhysics? physics
)

Implementation

CustomScrollView buildCustomScrollView(ScrollPhysics? physics) =>
    CustomScrollView(
        physics: physics,
        controller: controller,
        primary: primary,
        shrinkWrap: _shrinkWrap(shrinkWrap, physics),
        cacheExtent: cacheExtent,
        dragStartBehavior: dragStartBehavior,
        scrollDirection: scrollDirection,
        reverse: reverse,
        slivers: buildSlivers(),
        anchor: anchor,
        center: center,
        scrollBehavior: scrollBehavior,
        keyboardDismissBehavior: keyboardDismissBehavior,
        restorationId: restorationId,
        clipBehavior: clipBehavior,
        semanticChildCount: semanticChildCount);