ScrollableList constructor

const ScrollableList({
  1. Key? key,
  2. required List<Widget> items,
  3. required double childrenHeight,
  4. ScrollController? scrollController,
})

Implementation

const ScrollableList(
    {super.key, required this.items,
    required this.childrenHeight,
    this.scrollController});