SynchronizedScrollController constructor
SynchronizedScrollController({
- required DoubleSheetConfig config,
- required SheetGestureController sheetController,
- VoidCallback? onClose,
- bool enableSynchronization = true,
Implementation
SynchronizedScrollController({
required this.config,
required this.sheetController,
this.onClose,
bool enableSynchronization = true,
}) : _enableSynchronization = enableSynchronization {
sheetController.addListener(_onSheetPositionChanged);
}