customMemo method

Future<void> customMemo (int templateId, [ Map<String, String> templateArgs ])

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);
}