get static method

Future<DashManifest> get(
  1. YoutubeHttpClient httpClient,
  2. dynamic url
)

Implementation

static Future<DashManifest> get(YoutubeHttpClient httpClient, dynamic url) {
  return retry(httpClient, () async {
    final raw = await httpClient.getString(url);
    return DashManifest.parse(raw);
  });
}