OLD | NEW |
1 | 1 |
2 class _SVGZoomEventJs extends _UIEventJs implements SVGZoomEvent native "*SVGZoo
mEvent" { | 2 class _SVGZoomEventJs extends _UIEventJs implements SVGZoomEvent native "*SVGZoo
mEvent" { |
3 | 3 |
4 num get newScale() native "return this.newScale;"; | 4 final num newScale; |
5 | 5 |
6 _SVGPointJs get newTranslate() native "return this.newTranslate;"; | 6 final _SVGPointJs newTranslate; |
7 | 7 |
8 num get previousScale() native "return this.previousScale;"; | 8 final num previousScale; |
9 | 9 |
10 _SVGPointJs get previousTranslate() native "return this.previousTranslate;"; | 10 final _SVGPointJs previousTranslate; |
11 | 11 |
12 _SVGRectJs get zoomRectScreen() native "return this.zoomRectScreen;"; | 12 final _SVGRectJs zoomRectScreen; |
13 } | 13 } |
OLD | NEW |