muxedStreams property

List<StreamInfoProvider> muxedStreams
latefinal

Implementation

late final List<StreamInfoProvider> muxedStreams = root
        .get('streamingData')
        ?.getList('formats')
        ?.map((e) => _StreamInfo(e, StreamSource.muxed))
        .cast<StreamInfoProvider>()
        .toList() ??
    const <StreamInfoProvider>[];