disableSubtitle method
Disable/turn off subtitle
Implementation
Future<void> disableSubtitle() async {
_checkInitialized();
_fetchHlsMasterPlaylist.betterPlayerSubtitlesSource = null;
_fetchHlsMasterPlaylist.subtitlesLines.clear();
if (!_isDisposed) {
_subtitleController.add(null);
}
}