Hi Revenuecat team, I am new flutter developer and use firestore as my server, my question is for my flutter app I want to check user’s subscription status, so I can get it via
CustomerInfo customerInfo = await Purchases.getCustomerInfo();
Should I then pass this value
customerInfo.entitlements.alllentitlementID]?.isActive
directly to my cloud function to calculate different methods based on user’s subscription status, or I need to move revenuecat code part in cloud function, in case someone can hack my code and always pass TRUE value to my cloud function? Thanks!