Future<bool> isAppInstalled(String packageName) async { final bool isInstalled = await DeviceApps.isAppInstalled(packageName); return isInstalled; }