strokeDashOffset property

num get strokeDashOffset

Gets or sets the offset for dashed lines, used to start the drawing of the dash pattern with some space. The value must be a real non-negative number. The default is zero.

For more information, see Stroke Line Dash Offset (w3.org).

Implementation

_i2.num get strokeDashOffset => _i4.getProperty(
      this,
      'strokeDashOffset',
    );
set strokeDashOffset (num value)

Implementation

set strokeDashOffset(_i2.num value) {
  _i4.setProperty(
    this,
    'strokeDashOffset',
    value,
  );
}