separatorStroke property
dynamic
get
separatorStroke
Gets or sets the stroke (color) for the separator line that is drawn before a particular row or column, provided that row or column has a nonzero #separatorStrokeWidth.
The default value is null, so that this RowColumnDefinition does not specify any brush for the separator line to draw before the row or column. The line may still be drawn if the value of Panel#defaultRowSeparatorStroke or Panel#defaultColumnSeparatorStroke is non-null.
However, if no stroke color is specified, then no stroke width will be drawn, even if the #separatorStrokeWidth value is non-zero.
Implementation
_i2.dynamic get separatorStroke => _i4.getProperty(
this,
'separatorStroke',
);
set
separatorStroke
(dynamic value)
Implementation
set separatorStroke(_i2.dynamic value) {
_i4.setProperty(
this,
'separatorStroke',
value,
);
}