ToolPanelSection constructor

const ToolPanelSection({
  1. Key? key,
  2. required String title,
  3. required List<Widget> children,
})

Create a new panel section with the given title and children.

Implementation

const ToolPanelSection({
  Key? key,
  required this.title,
  required this.children,
}) : super(key: key);