copyWith method
Implementation
SafetyCommonModel copyWith(
{SafetyEvaluation? ivc, SafetyEvaluation? nonIvc}) {
return SafetyCommonModel(
ivc: ivc ?? this.ivc, nonIvc: nonIvc ?? this.nonIvc);
}
SafetyCommonModel copyWith(
{SafetyEvaluation? ivc, SafetyEvaluation? nonIvc}) {
return SafetyCommonModel(
ivc: ivc ?? this.ivc, nonIvc: nonIvc ?? this.nonIvc);
}