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