maxChildIteration property

int maxChildIteration

The maximum of iterations we can do for one child.

When it's impossible to place another child, a FlutterError is thrown when this number of iterations for one child is reached.

Implementation

int get maxChildIteration => _maxChildIteration;
void maxChildIteration=(int value)

Implementation

set maxChildIteration(int value) {
  if (_maxChildIteration != value) {
    _maxChildIteration = value;
    markNeedsPaint();
  }
}