copyWith method
Implementation
ContentCreateSpaceHistory copyWith({DateTime? createdDate, User? createdBy}) {
  return ContentCreateSpaceHistory(
    createdDate: createdDate ?? this.createdDate,
    createdBy: createdBy ?? this.createdBy,
  );
}ContentCreateSpaceHistory copyWith({DateTime? createdDate, User? createdBy}) {
  return ContentCreateSpaceHistory(
    createdDate: createdDate ?? this.createdDate,
    createdBy: createdBy ?? this.createdBy,
  );
}