getTransactionById method

Future<TransactionResponse> getTransactionById(
  1. String transactionId
)

Lookup transaction information by a given transaction id.

Throws an AlgorandException if there is an HTTP error. Returns the transaction information for the given id.

Implementation

Future<TransactionResponse> getTransactionById(String transactionId) async {
  return _indexerRepository.getTransactionById(transactionId);
}