copyWith method

ContentChildTypePage copyWith({
  1. bool? value,
  2. GenericLinks? links,
})

Implementation

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