receiveKakaoScheme function

Future<String?> receiveKakaoScheme()

KO: 실행 중이지 않은 앱을 커스텀 URL 스킴 호출로 실행할 때 URL 전달
EN: Pass the URL when launching a closed app with a custom URL scheme

Implementation

Future<String?> receiveKakaoScheme() async {
  if (kIsWeb) {
    return null;
  }
  return await _methodChannel.invokeMethod(CommonConstants.receiveKakaoScheme);
}