DartBlockToolbox constructor
const
DartBlockToolbox({
- Key? key,
- bool isTransparent = false,
- bool isDocked = true,
- bool canUndock = true,
- bool isShowingCode = false,
- bool showActions = true,
- bool isExecuting = false,
- required List<
String> existingFunctionNames, - dynamic onToolboxItemDragStart()?,
- dynamic onToolboxItemDragEnd()?,
- dynamic onRun()?,
- bool canAddFunction = false,
- required dynamic onCreateFunction(),
- required dynamic onAction(
- ToolboxExtraAction action
- required dynamic onCodeViewAction(
- CodeViewAction action
Implementation
const DartBlockToolbox({
super.key,
this.isTransparent = false,
this.isDocked = true,
this.canUndock = true,
this.isShowingCode = false,
this.showActions = true,
this.isExecuting = false,
required this.existingFunctionNames,
this.onToolboxItemDragStart,
this.onToolboxItemDragEnd,
this.onRun,
this.canAddFunction = false,
required this.onCreateFunction,
required this.onAction,
required this.onCodeViewAction,
});