sideCount property
int
get
sideCount
Implementation
int get sideCount => _sideCount;
set
sideCount
(int value)
Implementation
set sideCount(int value) {
if (value == _sideCount) return;
_sideCount = value;
markNeedsLayout();
}