openStore static method

Future openStore({
  1. String? appStoreId,
  2. String? microsoftStoreId,
})

Implementation

static Future openStore(
    {String? appStoreId, String? microsoftStoreId}) async {
  if (Platform.isIOS || Platform.isMacOS) assert(appStoreId != null);
  _inAppReview.openStoreListing(
      appStoreId: appStoreId, microsoftStoreId: microsoftStoreId);
}