copyWith method

Implementation

CreditPayrollIncomePrecheckResponse copyWith(
    {String? requestId,
    enums.IncomeVerificationPrecheckConfidence? confidence}) {
  return CreditPayrollIncomePrecheckResponse(
      requestId: requestId ?? this.requestId,
      confidence: confidence ?? this.confidence);
}