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