getTransactionReceipt method

Future<TransactionReceipt?> getTransactionReceipt(
  1. String hash
)

Returns the TransactionReceipt for hash or null if the transaction has not been mined.

To stall until the transaction has been mined, consider the waitForTransaction method.

Implementation

Future<TransactionReceipt?> getTransactionReceipt(String hash) =>
    call<TransactionReceipt?>('getTransactionReceipt', [hash]);