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