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