copyWith method

WalletTransactionGetRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? transactionId,
})

Implementation

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