copyWithWrapped method
EmploymentVerificationGetResponse
copyWithWrapped({
- Wrapped<
List< ? employments,EmploymentVerification> > - Wrapped<
String> ? requestId,
Implementation
EmploymentVerificationGetResponse copyWithWrapped(
{Wrapped<List<EmploymentVerification>>? employments,
Wrapped<String>? requestId}) {
return EmploymentVerificationGetResponse(
employments:
(employments != null ? employments.value : this.employments),
requestId: (requestId != null ? requestId.value : this.requestId));
}