GzNode constructor

GzNode({
  1. required String id,
  2. String? label,
  3. String? color,
  4. String? fontColor,
  5. String? shape,
})

Implementation

GzNode({
  required super.id,
  super.label,
  super.color,
  super.fontColor,
  super.shape,
}) : super(children: []);