openPlayStore static method
void
openPlayStore()
Implementation
static void openPlayStore() async {
if (await canLaunchUrl(Uri.parse(
"https://play.google.com/store/apps/details?id=com.ARMOYU"))) {
await launchUrl(Uri.parse(
"https://play.google.com/store/apps/details?id=com.ARMOYU"));
} else {
throw 'App Store açılamadı!';
}
}