copyWith method
Implementation
Comments copyWith({
Authorperm? parent,
Map<String, Comment>? items,
Map<String, List<String>>? children,
}) {
return Comments(
parent: parent ?? this.parent,
items: items ?? this.items,
children: children ?? this.children,
);
}