This repository has been archived by the owner on Aug 1, 2024. It is now read-only.
- Add support for StoreInfo API
try {
final res = await Glassfy.storeInfo();
res.all?.forEach((storeInfo) {
if (storeInfo is GlassfyStoreInfoPaddle) {
print(storeInfo.subscriptionId);
print(storeInfo.userid);
print(storeInfo.planId);
print(storeInfo.subscriptionId);
print(storeInfo.updateURL);
print(storeInfo.cancelURL);
}
});
} catch (err) {
[...]
}
- Fix
Namespace not specified
error