CastTextTrack constructor

const CastTextTrack({
  1. required int trackId,
  2. required String url,
  3. required String language,
  4. String? name,
  5. String contentType = 'text/vtt',
})

Implementation

const CastTextTrack({
  required this.trackId,
  required this.url,
  required this.language,
  this.name,
  this.contentType = 'text/vtt',
});