TopologyNode constructor

const TopologyNode({
  1. required String id,
  2. required String kind,
  3. required String name,
  4. String? path,
  5. Map<String, Object?> attributes = const {},
})

Implementation

const TopologyNode({
  required this.id,
  required this.kind,
  required this.name,
  this.path,
  this.attributes = const {},
});