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