copyWith method

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

Implementation

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