scrapMemo method

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

Implementation

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