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