channelChatUrl method

Future<Uri> channelChatUrl(
  1. String channelId
)

Implementation

Future<Uri> channelChatUrl(final String channelId) async {
  return Uri(
      scheme: "https",
      host: KakaoContext.hosts.pf,
      path: "/$channelId/chat",
      queryParameters: await _channelBaseParams());
}