DiagramWiresPainter constructor

DiagramWiresPainter({
  1. required ElectricalNode? root,
  2. required Map<String, Offset> positions,
  3. Color wireColor = const Color(0xFF888888),
})

Implementation

DiagramWiresPainter({
  required this.root,
  required this.positions,
  this.wireColor = const Color(0xFF888888),
});