copyWithWrapped method
SafetyCommonModel
copyWithWrapped({
- Wrapped<
SafetyEvaluation?> ? ivc, - Wrapped<
SafetyEvaluation?> ? nonIvc,
Implementation
SafetyCommonModel copyWithWrapped(
{Wrapped<SafetyEvaluation?>? ivc, Wrapped<SafetyEvaluation?>? nonIvc}) {
return SafetyCommonModel(
ivc: (ivc != null ? ivc.value : this.ivc),
nonIvc: (nonIvc != null ? nonIvc.value : this.nonIvc));
}