| OLD | NEW |
| 1 | 1 |
| 2 class _SVGFEConvolveMatrixElementImpl extends _SVGElementImpl implements SVGFECo
nvolveMatrixElement { | 2 class _SVGFEConvolveMatrixElementImpl extends _SVGElementImpl implements SVGFECo
nvolveMatrixElement { |
| 3 _SVGFEConvolveMatrixElementImpl._wrap(ptr) : super._wrap(ptr); | 3 _SVGFEConvolveMatrixElementImpl._wrap(ptr) : super._wrap(ptr); |
| 4 | 4 |
| 5 SVGAnimatedNumber get bias() => _wrap(_ptr.bias); | 5 SVGAnimatedNumber get bias() => _wrap(_ptr.bias); |
| 6 | 6 |
| 7 SVGAnimatedNumber get divisor() => _wrap(_ptr.divisor); | 7 SVGAnimatedNumber get divisor() => _wrap(_ptr.divisor); |
| 8 | 8 |
| 9 SVGAnimatedEnumeration get edgeMode() => _wrap(_ptr.edgeMode); | 9 SVGAnimatedEnumeration get edgeMode() => _wrap(_ptr.edgeMode); |
| 10 | 10 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 SVGAnimatedString get result() => _wrap(_ptr.result); | 33 SVGAnimatedString get result() => _wrap(_ptr.result); |
| 34 | 34 |
| 35 SVGAnimatedLength get width() => _wrap(_ptr.width); | 35 SVGAnimatedLength get width() => _wrap(_ptr.width); |
| 36 | 36 |
| 37 SVGAnimatedLength get x() => _wrap(_ptr.x); | 37 SVGAnimatedLength get x() => _wrap(_ptr.x); |
| 38 | 38 |
| 39 SVGAnimatedLength get y() => _wrap(_ptr.y); | 39 SVGAnimatedLength get y() => _wrap(_ptr.y); |
| 40 | 40 |
| 41 // From SVGStylable | 41 // From SVGStylable |
| 42 | 42 |
| 43 SVGAnimatedString get _className() => _wrap(_ptr.className); | 43 SVGAnimatedString get _svgClassName() => _wrap(_ptr.className); |
| 44 | 44 |
| 45 CSSStyleDeclaration get style() => _wrap(_ptr.style); | 45 CSSStyleDeclaration get style() => _wrap(_ptr.style); |
| 46 | 46 |
| 47 CSSValue getPresentationAttribute(String name) { | 47 CSSValue getPresentationAttribute(String name) { |
| 48 return _wrap(_ptr.getPresentationAttribute(_unwrap(name))); | 48 return _wrap(_ptr.getPresentationAttribute(_unwrap(name))); |
| 49 } | 49 } |
| 50 } | 50 } |
| OLD | NEW |