ConnectingLines constructor

ConnectingLines({
  1. Color color = Colors.grey,
  2. double origin = 0.5,
  3. bool roundCorners = false,
  4. List<double>? interval,
})

Creates a ConnectingLines.

Implementation

ConnectingLines({
  super.color,
  super.origin,
  this.roundCorners = false,
  List<double>? interval,
}) : lineInterval = interval ?? [3, 1];