copyWithWrapped method

EmploymentVerificationGetResponse copyWithWrapped({
  1. Wrapped<List<EmploymentVerification>>? employments,
  2. 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));
}