copyWith method

TransactionsSyncRequest copyWith({
  1. String? clientId,
  2. String? accessToken,
  3. String? secret,
  4. String? cursor,
  5. int? count,
  6. TransactionsSyncRequestOptions? options,
})

Implementation

TransactionsSyncRequest copyWith(
    {String? clientId,
    String? accessToken,
    String? secret,
    String? cursor,
    int? count,
    TransactionsSyncRequestOptions? options}) {
  return TransactionsSyncRequest(
      clientId: clientId ?? this.clientId,
      accessToken: accessToken ?? this.accessToken,
      secret: secret ?? this.secret,
      cursor: cursor ?? this.cursor,
      count: count ?? this.count,
      options: options ?? this.options);
}