GraphNode constructor

const GraphNode({
  1. required String id,
  2. required String type,
  3. String? title,
  4. String? flow,
  5. String? description,
  6. List<String> tags = const [],
  7. required String source,
  8. required SourceRef sourceRef,
})

Implementation

const GraphNode({
  required this.id,
  required this.type,
  this.title,
  this.flow,
  this.description,
  this.tags = const [],
  required this.source,
  required this.sourceRef,
});