splineType property
Implementation
SplineType get splineType => _splineType;Implementation
set splineType(SplineType value) {
  if (_splineType != value) {
    _splineType = value;
    canUpdateOrCreateSegments = true;
    markNeedsUpdate();
  }
}