CircularLayout constructor

CircularLayout({
  1. List<SNumber> center = const [SNumber.percent(50), SNumber.percent(50)],
  2. SNumber? radius,
  3. SNumber? startRadius,
  4. SNumber? endRadius,
  5. bool clockwise = true,
  6. num startAngle = 0,
  7. num endAngle = 360,
  8. Fun2<Graph, List<GraphNode>, Map<GraphNode, num>>? sort,
  9. bool workerThread = false,
})

Implementation

CircularLayout({
  this.center = const [SNumber.percent(50), SNumber.percent(50)],
  this.radius,
  this.startRadius,
  this.endRadius,
  this.clockwise = true,
  this.startAngle = 0,
  this.endAngle = 360,
  super.sort,
  super.workerThread,
});