AnchorPointScrollView constructor

const AnchorPointScrollView({
  1. Key? key,
  2. required List<Widget> children,
  3. ValueChanged<int>? onIndexChanged,
  4. double excludeOffset = 0,
  5. ValueChanged<double>? onScroll,
  6. EdgeInsets? padding,
})

Implementation

const AnchorPointScrollView({
  this.key,
  required this.children,
  this.onIndexChanged,
  this.excludeOffset = 0,
  this.onScroll,
  this.padding,
}) : super(key: key);