makeCustomUrl method
- required int templateId,
- Map<
String, String> ? templateArgs, - Map<
String, String> ? serverCallbackArgs,
KO: 사용자 정의 템플릿을 카카오톡으로 공유하기 위한 URL 생성
templateId
에 사용자 정의 템플릿 ID 전달
templateArgs
에 사용자 인자 키와 값 전달
serverCallbackArgs
에 카카오톡 공유 전송 성공 알림에 포함할 키와 값 전달
EN: Creates a URL to share a custom template via Kakao Talk
Pass the custom template ID to templateId
Pass the keys and values of the user argument to templateArgs
Pass the keys and values for the Kakao Talk Sharing success callback to serverCallbackArgs
Implementation
Future<Uri> makeCustomUrl({
required int templateId,
Map<String, String>? templateArgs,
Map<String, String>? serverCallbackArgs,
}) async {
final response = await api.custom(templateId, templateArgs: templateArgs);
return _sharerWithResponse(response,
serverCallbackArgs: serverCallbackArgs);
}