copyWith method

ContentUpdateAncestorsItem copyWith({
  1. dynamic id,
})

Implementation

ContentUpdateAncestorsItem copyWith({dynamic id}) {
  return ContentUpdateAncestorsItem(
    id: id ?? this.id,
  );
}