setAppStoreURL static method

Future<void> setAppStoreURL(
  1. String appStoreURL
)

iOS Only Sets url for the published iOS app on AppStore, You can redirect NPS Surveys or AppRating Surveys to AppStore to let users rate your app on AppStore itself. appStoreURL A String url for the published iOS app on AppStore

Implementation

static Future<void> setAppStoreURL(String appStoreURL) async {
  if (IBGBuildInfo.instance.isIOS) {
    return _host.setAppStoreURL(appStoreURL);
  }
}