layers property

PdfLayerCollection get layers

Gets the collection of child PdfLayer

Implementation

PdfLayerCollection get layers {
  _layerCollection ??= PdfLayerCollectionHelper.withLayer(
    _helper.document,
    _helper.layer,
  );
  return _layerCollection!;
}