GridCarouselPage<T> constructor

const GridCarouselPage<T>({
  1. Key? key,
  2. required List<List<T>> grid,
  3. required Widget cellBuilder(
    1. T
    ),
})

Implementation

const GridCarouselPage(
    {super.key, required this.grid, required this.cellBuilder});