launchPlaystore static method

Future<void> launchPlaystore()

Implementation

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