copyWith method
EmploymentVerificationGetResponse
copyWith({
- List<
EmploymentVerification> ? employments, - String? requestId,
Implementation
EmploymentVerificationGetResponse copyWith(
{List<EmploymentVerification>? employments, String? requestId}) {
return EmploymentVerificationGetResponse(
employments: employments ?? this.employments,
requestId: requestId ?? this.requestId);
}