layerCount property

int get layerCount

Implementation

int get layerCount => _layerCount;
set layerCount (int value)

Implementation

set layerCount(int value) {
  if (value == _layerCount) return;
  _layerCount = value;
  markNeedsLayout();
}