PanelScrollController constructor

PanelScrollController({
  1. double initialScrollOffset = 0.0,
  2. bool keepScrollOffset = true,
  3. String? debugLabel,
  4. required PanelController controller,
})

Implementation

PanelScrollController({
  double initialScrollOffset = 0.0,
  bool keepScrollOffset = true,
  String? debugLabel,
  required this.controller,
}) : super(
        keepScrollOffset: keepScrollOffset,
        debugLabel: debugLabel,
        initialScrollOffset: initialScrollOffset,
      );