StatementListView constructor

const StatementListView({
  1. Key? key,
  2. required int neoTechCoreNodeKey,
  3. required List<Statement> statements,
  4. required bool canDelete,
  5. required bool canChange,
  6. required bool canReorder,
  7. required dynamic onChanged(
    1. List<Statement>
    ),
  8. required dynamic onDuplicate(
    1. int index
    ),
  9. required dynamic onCopiedStatement(
    1. Statement statement,
    2. bool cut
    ),
  10. required dynamic onPastedStatement(),
  11. required List<DartBlockFunction> customFunctions,
})

Implementation

const StatementListView({
  super.key,
  required this.neoTechCoreNodeKey,
  required this.statements,
  required this.canDelete,
  required this.canChange,
  required this.canReorder,
  required this.onChanged,
  required this.onDuplicate,
  required this.onCopiedStatement,
  required this.onPastedStatement,
  required this.customFunctions,
});