debugUnfurl abstract method

  1. @POST.new('/unfurl')
Future<UnfurlResponse> debugUnfurl({
  1. @Body.new() required UnfurlRequest body,
})

Debug URL unfurl.

Resolves a single URL through the unfurler without reading from the unfurl cache.

body - Name not received - field will be skipped.

Implementation

@POST('/unfurl')
Future<UnfurlResponse> debugUnfurl({@Body() required UnfurlRequest body});