endArc property

MaterialPointArcTween? endArc

The path of the corresponding begin, end rectangle corners that trail the animation.

Implementation

MaterialPointArcTween? get endArc {
  if (end == null) {
    return null;
  }
  if (_dirty) {
    _initialize();
  }
  return _endArc;
}