DraggableScrollableActuator constructor

const DraggableScrollableActuator({
  1. Key? key,
  2. required Widget child,
})

Creates a widget that can notify descendent DraggableScrollableSheets to reset to their initial position.

The child parameter is required.

Implementation

const DraggableScrollableActuator({
  super.key,
  required this.child,
});