@SupportedBrowser(SupportedBrowser.CHROME) @SupportedBrowser(SupportedBrowser.SAFARI) @SupportedBrowser(SupportedBrowser.IE, '11') @Unstable() // TODO(14316): Firefox has this functionality with mozDashOffset, but it // needs to be polyfilled. num get lineDashOffset => JS('num', '#.lineDashOffset || #.webkitLineDashOffset', this, this);void lineDashOffset= (
@SupportedBrowser(SupportedBrowser.CHROME) @SupportedBrowser(SupportedBrowser.SAFARI) @SupportedBrowser(SupportedBrowser.IE, '11') @Unstable() // TODO(14316): Firefox has this functionality with mozDashOffset, but it // needs to be polyfilled. set lineDashOffset(num value) { JS( 'void', 'typeof #.lineDashOffset != "undefined" ? #.lineDashOffset = # : ' '#.webkitLineDashOffset = #', this, this, value, this, value); }
© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dartlang.org/stable/2.0.0/dart-html/CanvasRenderingContext2D/lineDashOffset.html