OLD | NEW |
1 | 1 |
2 class _SVGStopElementImpl extends _SVGElementImpl implements SVGStopElement { | 2 class _SVGStopElementImpl extends _SVGElementImpl implements SVGStopElement { |
3 _SVGStopElementImpl._wrap(ptr) : super._wrap(ptr); | 3 _SVGStopElementImpl._wrap(ptr) : super._wrap(ptr); |
4 | 4 |
5 SVGAnimatedNumber get offset() => _wrap(_ptr.offset); | 5 SVGAnimatedNumber get offset() => _wrap(_ptr.offset); |
6 | 6 |
7 // From SVGStylable | 7 // From SVGStylable |
8 | 8 |
9 SVGAnimatedString get _className() => _wrap(_ptr.className); | 9 SVGAnimatedString get _svgClassName() => _wrap(_ptr.className); |
10 | 10 |
11 CSSStyleDeclaration get style() => _wrap(_ptr.style); | 11 CSSStyleDeclaration get style() => _wrap(_ptr.style); |
12 | 12 |
13 CSSValue getPresentationAttribute(String name) { | 13 CSSValue getPresentationAttribute(String name) { |
14 return _wrap(_ptr.getPresentationAttribute(_unwrap(name))); | 14 return _wrap(_ptr.getPresentationAttribute(_unwrap(name))); |
15 } | 15 } |
16 } | 16 } |
OLD | NEW |