chatChannelUrl method

Future<Uri> chatChannelUrl(
  1. String channelPublicId
)

KO: 카카오톡 채널 채팅 페이지 URL 반환
channelPublicId에 카카오톡 채널 프로필 ID 전달

EN: Returns a URL to start a chat with a Kakao Talk Channel
Pass Kakao Talk Channel profile ID to channelPublicId

Implementation

Future<Uri> chatChannelUrl(final String channelPublicId) async {
  return Uri(
      scheme: Constants.scheme,
      host: KakaoSdk.hosts.pf,
      path: "/$channelPublicId/${Constants.chat}",
      queryParameters: await _channelBaseParams());
}