waitForTransaction method
Implementation
Future<void> waitForTransaction(
String txnHash,
{ int? timeoutSecs, bool? checkSuccess }
) async {
await waitForTransactionWithResult(
txnHash,
timeoutSecs: timeoutSecs,
checkSuccess: checkSuccess);
}