muxeds property

Implementation

List<YoutubeVideoManifestMuxed> get muxeds {
  try {
    if (rawData["muxeds"] is List == false) {
      return [];
    }
    return (rawData["muxeds"] as List)
        .map((e) => YoutubeVideoManifestMuxed(e as Map))
        .toList()
        .cast<YoutubeVideoManifestMuxed>();
  } catch (e) {
    return [];
  }
}