copyWith method

EmploymentVerificationGetResponse copyWith({
  1. List<EmploymentVerification>? employments,
  2. String? requestId,
})

Implementation

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