itemWidth property

double get itemWidth

The width of each board item/list

Implementation

double get itemWidth => _itemWidth;
set itemWidth (double width)

Sets the item width for calculations

Implementation

set itemWidth(double width) {
  if (_isDisposed) return;
  _itemWidth = width;
  notifyListeners();
}