copyWith method

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

Implementation

FwStandardAppManagerFwAmSecurityTreeNode copyWith(
    {String? id,
    String? caption,
    String? nodetype,
    Map<String, dynamic>? properties,
    List<FwStandardAppManagerFwAmSecurityTreeNode>? children}) {
  return FwStandardAppManagerFwAmSecurityTreeNode(
      id: id ?? this.id,
      caption: caption ?? this.caption,
      nodetype: nodetype ?? this.nodetype,
      properties: properties ?? this.properties,
      children: children ?? this.children);
}