separatorStrokeWidth property
num
get
separatorStrokeWidth
Gets or sets the stroke width for a particular row or column's separator line, in local coordinates.
The default value is NaN, so that this RowColumnDefinition does not supply any stroke width information for what is drawn before the row or column. The separator line may still be drawn if Panel#defaultRowSeparatorStroke or Panel#defaultColumnSeparatorStroke is a real number (they default to 1).
Implementation
_i2.num get separatorStrokeWidth => _i4.getProperty(
this,
'separatorStrokeWidth',
);
set
separatorStrokeWidth
(num value)
Implementation
set separatorStrokeWidth(_i2.num value) {
_i4.setProperty(
this,
'separatorStrokeWidth',
value,
);
}