stackSize property

int stackSize

Implementation

int get stackSize {
  return _entries.size;
}
void stackSize=(int value)

Implementation

set stackSize(int value) {
  _entries.setSize(value);
  if (liveMode) notifyListeners();
}