debugLayer property

ContainerLayer? debugLayer

In debug mode, the compositing layer that this render object uses to repaint.

This getter is intended for debugging purposes only. In release builds, it always returns null. In debug builds, it returns the layer even if the layer is dirty.

For production code, consider layer.

Implementation

ContainerLayer? get debugLayer {
  ContainerLayer? result;
  assert(() {
    result = _layerHandle.layer;
    return true;
  }());
  return result;
}