strokeWidth property

double get strokeWidth

Implementation

double get strokeWidth {
  switch (style.type) {
    case PointConnectionType.solid:
      return style.lineWidth;
    case PointConnectionType.dashed:
      return style.dashSize;
    case PointConnectionType.dotted:
      return style.dotSize;
    default:
      return 0;
  }
}