width property
set
width
(double value)
The width of the divider.
Implementation
set width(double value) {
if (value == _width) {
return;
}
_width = value;
markNeedsLayout();
}
The width of the divider.
set width(double value) {
if (value == _width) {
return;
}
_width = value;
markNeedsLayout();
}