copyWithWrapped method
Implementation
CreditEmploymentItem copyWithWrapped(
{Wrapped<String>? itemId,
Wrapped<List<CreditEmploymentVerification>>? employments,
Wrapped<String?>? employmentReportToken}) {
return CreditEmploymentItem(
itemId: (itemId != null ? itemId.value : this.itemId),
employments:
(employments != null ? employments.value : this.employments),
employmentReportToken: (employmentReportToken != null
? employmentReportToken.value
: this.employmentReportToken));
}