Skip to content

Commit

Permalink
Minor code change on active subscription checks
Browse files Browse the repository at this point in the history
  • Loading branch information
cb-amutha committed May 19, 2023
1 parent 816157f commit 33f578e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ class _MyHomePageState extends State<MyHomePage> {
}
if (result.isNotEmpty) {
for (final subscription in result) {
if (subscription.storeStatus == StoreStatus.active.name) {
if (subscription.storeStatus == StoreStatus.active) {
debugPrint('Active Subscriptions : $subscription');
} else {
debugPrint('All Subscriptions : $subscription');
Expand Down

0 comments on commit 33f578e

Please sign in to comment.