GzGraph constructor

GzGraph({
  1. required String id,
  2. List<GzBaseNode> children = const [],
  3. String? label,
  4. String? color,
  5. String? fontColor,
  6. String? shape,
})

Implementation

GzGraph({
  required super.id,
  super.children = const [],
  super.label,
  super.color,
  super.fontColor,
  super.shape,
});