name property
set
name
(String? value)
Sets the name of the layer
Implementation
set name(String? value) {
if (value != null) {
_name = value;
_helper.layerID ??= 'OCG_${PdfResources.globallyUniqueIdentifier}';
}
}