xAxisRotation property
      
      num
      get
      xAxisRotation
      
    
    
Gets or sets the X-axis rotation for a PathSegment of type PathSegment.SvgArc|SvgArc. X-axis rotation is used to rotate the ellipse that the arc is created from, and must be between 0 and 360 degrees. Default is 0.
Implementation
_i2.num get xAxisRotation => _i4.getProperty(
      this,
      'xAxisRotation',
    );
      
      set
      xAxisRotation
      (num value) 
      
    
    
    
Implementation
set xAxisRotation(_i2.num value) {
  _i4.setProperty(
    this,
    'xAxisRotation',
    value,
  );
}