PaneView constructor

const PaneView({
  1. required Pane controller,
  2. required ScrollController scrollController,
  3. ScrollPhysics? scrollPhysics,
  4. Key? key,
})

Implementation

const PaneView({
  required this.controller,
  required this.scrollController,
  this.scrollPhysics,
  super.key,
});