webNaviInstall property

String webNaviInstall

Implementation

static String get webNaviInstall {
  var platform = const LocalPlatform();
  if (kIsWeb) {
    return KakaoSdk.platforms.web.kakaoNaviInstallPage;
  } else if (platform.isIOS) {
    return KakaoSdk.platforms.ios.kakaoNaviInstallPage;
  } else {
    return KakaoSdk.platforms.android.kakaoNaviInstallPage;
  }
}