LinkForce constructor

LinkForce({
  1. required List<NetworkLink> links,
  2. double distance = 30,
  3. double strength = 1,
  4. int iterations = 1,
})

Implementation

LinkForce({
  required this.links,
  this.distance = 30,
  this.strength = 1,
  this.iterations = 1,
});