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