Hello my subscription id is lotto_world_pro and base id is lotto-world-pro-monthly. in revenuecat my id for this product is lotto_world_pro:lotto-world-pro-monthly. When i use the code below in flutter if i use revenuecat id i receive a product not found error but if i use just lotto_world_pro(sub id) it works well and revenuecat sees my transactions. Am i doing it right? Shouldn’t the revenuecat id sholud work?
Future<void> _getAndroidProductsSubs() async {
try {
androidSubs = await Purchases.getProducts(
>
'lotto_world_pro',
],
type: PurchaseType.subs,
);
} on PlatformException catch (e) {
debugPrint(e.toString());
}
}