BooleanValueComposer constructor

const BooleanValueComposer({
  1. Key? key,
  2. DartBlockValueTreeBooleanNode? value,
  3. required List<DartBlockVariableDefinition> variableDefinitions,
  4. required List<DartBlockFunction> customFunctions,
  5. required dynamic onChange(
    1. DartBlockValueTreeBooleanNode?
    ),
})

Implementation

const BooleanValueComposer({
  super.key,
  this.value,
  required this.variableDefinitions,
  required this.customFunctions,
  required this.onChange,
});