getUserOpTransactionHash method
Implementation
Future<String?> getUserOpTransactionHash(String? userOpHash) async {
try {
RPCModel response = await _makeRpcRequest(
'eth_getUserOperationByHash', bundlerURL, [userOpHash]);
return response.userOpHash!;
} catch (e) {
print(e);
}
}