defaultRowSeparatorDashArray property

Array<num>? get defaultRowSeparatorDashArray

For Panel.Table|Table Panels: Gets or sets the default dash array for a row's separator. RowColumnDefinition#separatorDashArray can override this default value.

Must be an array of positive numbers and zeroes, or else null to indicate a solid line.

For example, the array 5, 10 would create dashes of 5 pixels and spaces of 10 pixels.

Setting an array with all zeroes will set the value to null.

Default is null.

Implementation

_i7.Array<_i2.num>? get defaultRowSeparatorDashArray => _i4.getProperty(
      this,
      'defaultRowSeparatorDashArray',
    );
set defaultRowSeparatorDashArray (Array<num>? value)

Implementation

set defaultRowSeparatorDashArray(_i7.Array<_i2.num>? value) {
  _i4.setProperty(
    this,
    'defaultRowSeparatorDashArray',
    value ?? _i5.undefined,
  );
}