isLargeArc property
bool
get
isLargeArc
Gets or sets the large-arc-flag for a PathSegment of type PathSegment.SvgArc|SvgArc. SVG Arcs specify a radius and an endpoint, and are always a portion of an ellipse. The parameters allow for two potential ellipses and four potential arcs. A large-arc-flag set to true will choose the larger of the two arc sweeps. Which way the arc sweeps (positive angle or negative angle) depends on the value of #isClockwiseArc For more information see the visual examples in the SVG Arc specification (w3.org)
Implementation
_i2.bool get isLargeArc => _i4.getProperty(
this,
'isLargeArc',
);
set
isLargeArc
(bool value)
Implementation
set isLargeArc(_i2.bool value) {
_i4.setProperty(
this,
'isLargeArc',
value,
);
}