youtube_explode/lib/src/videos/streams/stream_context.dart

14 lines
286 B
Dart
Raw Normal View History

2020-06-03 13:18:37 +02:00
import '../../reverse_engineering/reverse_engineering.dart';
///
class StreamContext {
///
final Iterable<StreamInfoProvider> streamInfoProviders;
///
final Iterable<CipherOperation> cipherOperations;
///
StreamContext(this.streamInfoProviders, this.cipherOperations);
}