OLD | NEW |
1 | 1 |
2 class _SVGRadialGradientElementJs extends _SVGGradientElementJs implements SVGRa
dialGradientElement native "*SVGRadialGradientElement" { | 2 class _SVGRadialGradientElementJs extends _SVGGradientElementJs implements SVGRa
dialGradientElement native "*SVGRadialGradientElement" { |
3 | 3 |
4 _SVGAnimatedLengthJs get cx() native "return this.cx;"; | 4 final _SVGAnimatedLengthJs cx; |
5 | 5 |
6 _SVGAnimatedLengthJs get cy() native "return this.cy;"; | 6 final _SVGAnimatedLengthJs cy; |
7 | 7 |
8 _SVGAnimatedLengthJs get fx() native "return this.fx;"; | 8 final _SVGAnimatedLengthJs fx; |
9 | 9 |
10 _SVGAnimatedLengthJs get fy() native "return this.fy;"; | 10 final _SVGAnimatedLengthJs fy; |
11 | 11 |
12 _SVGAnimatedLengthJs get r() native "return this.r;"; | 12 final _SVGAnimatedLengthJs r; |
13 } | 13 } |
OLD | NEW |