AnnotationDependency constructor
const
AnnotationDependency({
- required String nodeId,
- required AnnotationBehavior type,
- Map<
String, dynamic> metadata = const {},
Creates an annotation dependency.
Parameters
nodeId: The ID of the node this dependency referencestype: The type of dependency behaviormetadata: Optional custom data for this dependency
Implementation
const AnnotationDependency({
required this.nodeId,
required this.type,
this.metadata = const {},
});