scrapMemo method

Future<void> scrapMemo (String url, { int templateId, Map<String, String> templateArgs })

Implementation

Future<void> scrapMemo(String url,
    {int templateId, Map<String, String> templateArgs}) async {
  var params = {
    "request_url": url,
    "template_id": templateId,
    "template_args": templateArgs == null ? null : jsonEncode(templateArgs)
  };
  return _memo("scrap/", params);
}