RevenueCat SDK
📦 Dependency Updates
🔄 Other Changes
- Expose storeError for iOS if any (RevenueCat/purchases-hybrid-common#1011) via Toni Rico (@tonidero). You can use it like:
try {
offerings = await Purchases.getOfferings();
} on PlatformException catch (e) {
final storeError = e.details['storeError'];
// Do something with storeError if it exists
}