Use openStoreListing() to redirect users to your app's store page (Google Play Store, Apple App Store, or Microsoft Store).
Unlike requestReview(), this method is not restricted by a quota and is the recommended way to implement a permanent "Rate Us" button or other call-to-action in your UI.
Platform-specific requirements:
- iOS & MacOS: Requires
appStoreId (found in App Store Connect under General > App Information > Apple ID). - Windows: Requires
microsoftStoreId.
import 'package:in_app_review/in_app_review.dart';
final InAppReview inAppReview = InAppReview.instance;
inAppReview.openStoreListing(appStoreId: '...', microsoftStoreId: '...');