ConnectingLinesGuide constructor

const ConnectingLinesGuide({
  1. double indent = 40.0,
  2. Color color = Colors.grey,
  3. double thickness = 2.0,
  4. double origin = 0.5,
  5. bool roundCorners = false,
})

Implementation

const ConnectingLinesGuide({
  super.indent,
  super.color,
  super.thickness,
  super.origin,
  this.roundCorners = false,
});