Node constructor

Node({
  1. required String id,
  2. required String name,
  3. required String type,
  4. List<double>? position,
  5. Map<String, dynamic>? parameters,
  6. Map<String, dynamic>? credentials,
  7. bool? disabled,
  8. String? notes,
  9. bool? notesInFlow,
  10. int? retryOnFail,
  11. int? maxTries,
  12. int? waitBetweenTries,
  13. bool? continueOnFail,
  14. bool? pairedItem,
  15. String? onError,
  16. dynamic typeVersion,
  17. bool? alwaysOutputData,
  18. bool? executeOnce,
})

Implementation

Node({
  required this.id,
  required this.name,
  required this.type,
  this.position,
  this.parameters,
  this.credentials,
  this.disabled,
  this.notes,
  this.notesInFlow,
  this.retryOnFail,
  this.maxTries,
  this.waitBetweenTries,
  this.continueOnFail,
  this.pairedItem,
  this.onError,
  this.typeVersion,
  this.alwaysOutputData,
  this.executeOnce,
});