copyWith method
CreditBankIncomeRefreshRequest
copyWith({
- String? clientId,
- String? secret,
- String? userToken,
- CreditBankIncomeRefreshRequestOptions? options,
Implementation
CreditBankIncomeRefreshRequest copyWith(
{String? clientId,
String? secret,
String? userToken,
CreditBankIncomeRefreshRequestOptions? options}) {
return CreditBankIncomeRefreshRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
userToken: userToken ?? this.userToken,
options: options ?? this.options);
}