copyWith method
IncomeVerificationCreateRequest
copyWith({
- String? clientId,
- String? secret,
- String? webhook,
- String? precheckId,
- IncomeVerificationCreateRequestOptions? options,
Implementation
IncomeVerificationCreateRequest copyWith(
{String? clientId,
String? secret,
String? webhook,
String? precheckId,
IncomeVerificationCreateRequestOptions? options}) {
return IncomeVerificationCreateRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
webhook: webhook ?? this.webhook,
precheckId: precheckId ?? this.precheckId,
options: options ?? this.options);
}