openAppStore static method
void
openAppStore()
Implementation
static void openAppStore() async {
if (await canLaunchUrl(
Uri.parse("https://apps.apple.com/tr/app/armoyu/id6448871009?l=tr"))) {
await launchUrl(
Uri.parse("https://apps.apple.com/tr/app/armoyu/id6448871009?l=tr"));
} else {
throw 'App Store açılamadı!';
}
}