launcherUpdateApps method

dynamic launcherUpdateApps()

Implementation

launcherUpdateApps() async {
  String urlApps = Platform.isAndroid
      ? Config.urlPlaystrore!
      : Config.urlAppstore!;
  await launchUrl(Uri.parse(urlApps));
}