customMemo method
Implementation
Future<void> customMemo(int templateId,
[Map<String, String> templateArgs]) async {
var params = {
"template_id": templateId,
"template_args": templateArgs == null ? null : jsonEncode(templateArgs)
};
return _memo("", params);
}