I’m use react-native and try to get products in Qonversion but I can’t.
I used:
const products = await Qonversion.getSharedInstance().products();
The comand return a product, but I’m not work with the response. This is a object but I’m cannot check the proprieties.
In DOCS, the suggestion is to use:
const products: Map<string, Product> = await Qonversion.getSharedInstance().products();
But the command not working.
Can someone help me?