copyWith method

TransactionsRecurringGetRequest copyWith({
  1. String? clientId,
  2. String? accessToken,
  3. String? secret,
  4. TransactionsRecurringGetRequestOptions? options,
  5. List<String>? accountIds,
})

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);
}