copyWith method

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

Implementation

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