copyWith method
Implementation
TransactionsRecurringGetRequest copyWith(
{String? clientId,
String? accessToken,
String? secret,
TransactionsRecurringGetRequestOptions? options,
List<String>? accountIds}) {
return TransactionsRecurringGetRequest(
clientId: clientId ?? this.clientId,
accessToken: accessToken ?? this.accessToken,
secret: secret ?? this.secret,
options: options ?? this.options,
accountIds: accountIds ?? this.accountIds);
}