FreeScrollView constructor

const FreeScrollView({
  1. Key? key,
  2. ScrollPhysics physics = const ClampingScrollPhysics(),
  3. required Widget child,
})

Implementation

const FreeScrollView(
    {Key? key,
    this.physics = const ClampingScrollPhysics(),
    required this.child})
    : super(key: key);