channelAddUrl method

Future<Uri> channelAddUrl(
  1. String channelId
)

Implementation

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