copyWith method

IncomeVerificationPrecheckResponse copyWith({
  1. String? precheckId,
  2. String? requestId,
  3. IncomeVerificationPrecheckConfidence? confidence,
})

Implementation

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