followChannel method
- String channelPublicId
KO: 카카오톡 채널 간편 추가
EN: Follow Kakao Talk Channel
Implementation
Future<FollowChannelResult> followChannel(String channelPublicId) async {
SdkLog.d(
'[TalkApi.followChannel] started | channelPublicId=$channelPublicId',
);
final result = await _platform.followChannel(channelPublicId);
SdkLog.i('[TalkApi.followChannel] completed');
return result;
}