DartBlockEditor constructor
const
DartBlockEditor({
- Key? key,
- required DartBlockProgram program,
- required bool canChange,
- required bool canDelete,
- required bool canReorder,
- required bool canRun,
- Duration? maximumExecutionDuration,
- bool isDense = false,
- ScrollController? scrollController,
- dynamic onChanged(
- DartBlockProgram changedDartBlockProgram
- dynamic onInteraction(
- DartBlockInteraction dartBlockInteraction
- EdgeInsets? padding,
Implementation
const DartBlockEditor({
super.key,
required this.program,
required this.canChange,
required this.canDelete,
required this.canReorder,
required this.canRun,
this.maximumExecutionDuration,
this.isDense = false,
this.scrollController,
this.onChanged,
this.onInteraction,
this.padding,
});