copyWith method
Implementation
TransactionsRefreshRequest copyWith(
{String? clientId, String? accessToken, String? secret}) {
return TransactionsRefreshRequest(
clientId: clientId ?? this.clientId,
accessToken: accessToken ?? this.accessToken,
secret: secret ?? this.secret);
}