isPackageInstalled static method

Future<bool> isPackageInstalled()

Implementation

static Future<bool> isPackageInstalled() async {
  if (!Platform.isAndroid) {
    return true;
  }

  return NativeSDKBridge.isPackageInstalled();
}