copyWithWrapped method
Implementation
FwStandardAppManagerFwAmSecurityTreeNode copyWithWrapped(
{Wrapped<String?>? id,
Wrapped<String?>? caption,
Wrapped<String?>? nodetype,
Wrapped<Map<String, dynamic>?>? properties,
Wrapped<List<FwStandardAppManagerFwAmSecurityTreeNode>?>? children}) {
return FwStandardAppManagerFwAmSecurityTreeNode(
id: (id != null ? id.value : this.id),
caption: (caption != null ? caption.value : this.caption),
nodetype: (nodetype != null ? nodetype.value : this.nodetype),
properties: (properties != null ? properties.value : this.properties),
children: (children != null ? children.value : this.children));
}