FillViewportScrollView constructor

const FillViewportScrollView({
  1. Key? key,
  2. required Widget child,
  3. Axis scrollDirection = Axis.vertical,
  4. bool reverse = false,
  5. ScrollPhysics? physics,
})

Implementation

const FillViewportScrollView({
  super.key,
  required this.child,
  this.scrollDirection = Axis.vertical,
  this.reverse = false,
  this.physics,
});