launchPlaystore static method
Implementation
static Future<void> launchPlaystore() async {
String appStoreLink = UtilityHelper.instance.playstoreURL;
try {
await openUrl(appStoreLink);
} catch (e) {
debugPrint(e.toString());
}
}
static Future<void> launchPlaystore() async {
String appStoreLink = UtilityHelper.instance.playstoreURL;
try {
await openUrl(appStoreLink);
} catch (e) {
debugPrint(e.toString());
}
}