copyWithWrapped method

Implementation

CreditPayrollIncomePrecheckResponse copyWithWrapped(
    {Wrapped<String>? requestId,
    Wrapped<enums.IncomeVerificationPrecheckConfidence>? confidence}) {
  return CreditPayrollIncomePrecheckResponse(
      requestId: (requestId != null ? requestId.value : this.requestId),
      confidence: (confidence != null ? confidence.value : this.confidence));
}