VxAnimatedHeightView<T extends Widget> constructor

const VxAnimatedHeightView<T extends Widget>({
  1. Key? key,
  2. required T pageViewChild,
  3. required double computeAspectRadio(
    1. int? currentIndex
    ),
  4. dynamic notifyScroll(
    1. ScrollNotification scrollNotification
    )?,
  5. required int itemCount,
  6. int? currentPageIndex,
})

Implementation

const VxAnimatedHeightView(
    {super.key,
    required this.pageViewChild,
    required this.computeAspectRadio,
    this.notifyScroll,
    required this.itemCount,
    this.currentPageIndex})
    : assert(itemCount > 0);