copyWith method

ContentCreateAncestorsItem copyWith({
  1. String? id,
})

Implementation

ContentCreateAncestorsItem copyWith({String? id}) {
  return ContentCreateAncestorsItem(
    id: id ?? this.id,
  );
}