Skip to content
This repository has been archived by the owner on Aug 1, 2024. It is now read-only.

1.6.2 - StoreInfo API

Latest
Compare
Choose a tag to compare
@lgarbo lgarbo released this 08 Dec 14:25
· 2 commits to main since this release
  • 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