dividerWidth property
double
get
dividerWidth
Implementation
double get dividerWidth {
var width = _dividerWidth?.get() ?? 6;
if (width % 2 != 0) width = width + 1;
return width;
}
set
dividerWidth
(dynamic v)
Implementation
set dividerWidth(dynamic v) {
if (_dividerWidth != null) {
_dividerWidth!.set(v);
} else if (v != null) {
_dividerWidth = DoubleObservable(Binding.toKey(id, 'dividerwidth'), v,
scope: scope, listener: onPropertyChange);
}
}