CellDebugInfo constructor

const CellDebugInfo({
  1. required Rect bounds,
  2. required int cellX,
  3. required int cellY,
  4. required int nodeCount,
  5. required int portCount,
  6. required int connectionCount,
  7. required int annotationCount,
})

Implementation

const CellDebugInfo({
  required this.bounds,
  required this.cellX,
  required this.cellY,
  required this.nodeCount,
  required this.portCount,
  required this.connectionCount,
  required this.annotationCount,
});