appStoreUrl property
String
get
appStoreUrl
Implementation
static String get appStoreUrl {
String returnUrl = '';
if (kIsWeb) {
return '';
}
if (Platform.isIOS) {
returnUrl = appStoreAppleUrl;
} else if (Platform.isAndroid) {
returnUrl = appStoreAndroidUrl;
} else {
//TODO: handle web??
returnUrl = '';
}
return returnUrl;
}