copyWith method

TransactionsGetRequest copyWith({
  1. String? clientId,
  2. TransactionsGetRequestOptions? options,
  3. String? accessToken,
  4. String? secret,
  5. DateTime? startDate,
  6. DateTime? endDate,
})

Implementation

TransactionsGetRequest copyWith(
    {String? clientId,
    TransactionsGetRequestOptions? options,
    String? accessToken,
    String? secret,
    DateTime? startDate,
    DateTime? endDate}) {
  return TransactionsGetRequest(
      clientId: clientId ?? this.clientId,
      options: options ?? this.options,
      accessToken: accessToken ?? this.accessToken,
      secret: secret ?? this.secret,
      startDate: startDate ?? this.startDate,
      endDate: endDate ?? this.endDate);
}