LayerController<T extends Enum> constructor

LayerController<T extends Enum>({
  1. List<Layer<T>>? layers,
})

Implementation

LayerController({List<Layer<T>>? layers}) {
  if (layers != null) {
    _layers.addAll(layers);
  }
}