customMemo method

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

Implementation

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