beginArc property

ShadcnPointArcTween? get beginArc

Implementation

ShadcnPointArcTween? get beginArc {
  if (begin == null) {
    return null;
  }
  if (_dirty) {
    _initialize();
  }
  return _beginArc;
}