LayerContainerCollection constructor

LayerContainerCollection(
  1. int maxLevels
)

Implementation

LayerContainerCollection(int maxLevels) {
  _drawingLayers = List.generate(MAX_DRAWING_LAYERS, (int idx) => LayerContainer(maxLevels));
}