DockLayout constructor
const
DockLayout({
- Key? key,
- Widget? child,
- List<
DockElement> elements = const [], - bool leftPane = true,
- bool topPane = true,
- bool rightPane = true,
- bool bottomPane = true,
- DockToolbar leftPaneToolbar = const DockToolbar(),
- DockToolbar topPaneToolbar = const DockToolbar(),
- DockToolbar rightPaneToolbar = const DockToolbar(),
- DockToolbar bottomPaneToolbar = const DockToolbar(),
- String? persistentData,
default constructor.
Implementation
const DockLayout(
{super.key,
this.child,
this.elements = const [],
this.leftPane = true,
this.topPane = true,
this.rightPane = true,
this.bottomPane = true,
this.leftPaneToolbar = const DockToolbar(),
this.topPaneToolbar = const DockToolbar(),
this.rightPaneToolbar = const DockToolbar(),
this.bottomPaneToolbar = const DockToolbar(),
this.persistentData
});