copyWithWrapped method

FwStandardAppManagerFwAmSecurityTreeNode copyWithWrapped({
  1. Wrapped<String?>? id,
  2. Wrapped<String?>? caption,
  3. Wrapped<String?>? nodetype,
  4. Wrapped<Map<String, dynamic>?>? properties,
  5. Wrapped<List<FwStandardAppManagerFwAmSecurityTreeNode>?>? children,
})

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),
  );
}