youtube_explode/lib/src/models/closed_caption_track_info.dart

17 lines
472 B
Dart

import 'models.dart';
/// Metadata associated with a certain [ClosedCaptionTrack]
class ClosedCaptionTrackInfo {
/// Manifest URL of the associated track.
final Uri url;
/// Language of the associated track.
final Language language;
/// Whether the associated track was automatically generated.
final bool isAutoGenerated;
/// Initializes an instance of [ClosedCaptionTrackInfo]
const ClosedCaptionTrackInfo(this.url, this.language, this.isAutoGenerated);
}