copyWith method
Implementation
ContentChildTypeComment copyWith({bool? value, GenericLinks? links}) {
return ContentChildTypeComment(
value: value ?? this.value,
links: links ?? this.links,
);
}
ContentChildTypeComment copyWith({bool? value, GenericLinks? links}) {
return ContentChildTypeComment(
value: value ?? this.value,
links: links ?? this.links,
);
}