sendCustomMemo method

Future<void> sendCustomMemo({
  1. required int templateId,
  2. Map<String, String>? templateArgs,
})

KO: 나에게 사용자 정의 템플릿으로 메시지 보내기
templateId에 메시지 템플릿 ID 전달

EN: Send message with custom template to me
Pass the message template ID to templateId

Implementation

Future<void> sendCustomMemo({
  required int templateId,
  Map<String, String>? templateArgs,
}) async {
  final params = {
    Constants.templateId: templateId,
    "template_args": templateArgs == null ? null : jsonEncode(templateArgs)
  };
  return _memo("", params);
}