ConnectorLineSettings constructor

ConnectorLineSettings({String length, double width, ConnectorType type, Color color })

Implementation

ConnectorLineSettings(
    {String length, double width, ConnectorType type, this.color})
    : length = length ?? '10%',
      width = width ?? 1.0,
      type = type ?? ConnectorType.line;