Config constructor

Config({
  1. RankDir rankDir = RankDir.ttb,
  2. GraphAlign? align,
  3. num marginX = 0,
  4. num marginY = 0,
  5. num rankSep = 50,
  6. num edgeSep = 10,
  7. num nodeSep = 10,
  8. Acyclicer acyclicer = Acyclicer.none,
  9. Ranker ranker = Ranker.networkSimplex,
  10. num? width,
  11. num? height,
})

Implementation

Config({
  this.rankDir = RankDir.ttb,
  this.align,
  this.marginX = 0,
  this.marginY = 0,
  this.rankSep = 50,
  this.edgeSep = 10,
  this.nodeSep = 10,
  this.acyclicer = Acyclicer.none,
  this.ranker = Ranker.networkSimplex,
  this.width,
  this.height,
});