receiveKakaoScheme function

Future<String?> receiveKakaoScheme()

종료된 앱이 카카오 스킴 호출로 실행될 때 URL 전달

Implementation

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