copyWith method

CreditBankIncomeRefreshRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? userToken,
  4. 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);
}