获取App安装商店 若是通过应用商店安装的应用,返回应用商店的名称,否则返回空字符串
static Future<String> getInstallerStore() async { PackageInfo packageInfo = await PackageInfo.fromPlatform(); return packageInfo.installerStore ?? ''; }