SubtitleSource constructor

const SubtitleSource({
  1. required String path,
  2. String? languageCode,
  3. String? name,
  4. SubtitleSourceType type = SubtitleSourceType.file,
})

Implementation

const SubtitleSource({
  required this.path,
  this.languageCode,
  this.name,
  this.type = SubtitleSourceType.file,
});