getInstallerStore static method

Future<String> getInstallerStore()

获取App安装商店 若是通过应用商店安装的应用,返回应用商店的名称,否则返回空字符串

Implementation

static Future<String> getInstallerStore() async {
  PackageInfo packageInfo = await PackageInfo.fromPlatform();
  return packageInfo.installerStore ?? '';
}