copyWith method

ContentCreateSpaceHistory copyWith({
  1. DateTime? createdDate,
  2. User? createdBy,
})

Implementation

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