Node constructor
Node({
- required String id,
- required String name,
- required String type,
- List<
double> ? position, - Map<
String, dynamic> ? parameters, - Map<
String, dynamic> ? credentials, - bool? disabled,
- String? notes,
- bool? notesInFlow,
- int? retryOnFail,
- int? maxTries,
- int? waitBetweenTries,
- bool? continueOnFail,
- bool? pairedItem,
- String? onError,
- dynamic typeVersion,
- bool? alwaysOutputData,
- 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,
});