shareScrap method

Future<Uri> shareScrap({
  1. required String url,
  2. int? templateId,
  3. Map<String, String>? templateArgs,
  4. Map<String, String>? serverCallbackArgs,
})

KO: 스크랩 메시지 보내기
url에 스크랩할 URL 전달
templateId에 사용자 정의 템플릿 ID 전달
templateArgs에 사용자 인자 키와 값 전달
serverCallbackArgs에 카카오톡 공유 전송 성공 알림에 포함할 키와 값 전달

EN: Send scrape message
Pass the URL to scrape url
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> shareScrap({
  required String url,
  int? templateId,
  Map<String, String>? templateArgs,
  Map<String, String>? serverCallbackArgs,
}) async {
  final response = await api.scrap(url,
      templateId: templateId, templateArgs: templateArgs);
  return _talkWithResponse(response, serverCallbackArgs: serverCallbackArgs);
}