CodeGenNode class

Represents a node in a directed acyclic graph (DAG)

Constructors

CodeGenNode({required List<CodeGenNodeArg> args, required String id, required String nodeType, int? lineNumber})
CodeGenNode.fromJson(Map<String, dynamic> json)
factory

Properties

args List<CodeGenNodeArg>
Properties of the node, in the form of name-value pairs.
final
hashCode int
The hash code for this object.
no setterinherited
id String
A node identifier that is unique within the node's graph.
final
lineNumber int?
The line number of the node.
final
nodeType String
The type of node that this is.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited