opengraph_fetch_raw function

Future opengraph_fetch_raw(
  1. String url
)

Fetch OpenGraph data from a URL and return the raw metadata

This is provided for compatibility with the old API

Implementation

Future<dynamic> opengraph_fetch_raw(String url) async {
  return await OpengraphFetch.extract(url);
}