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