setSubtitleOptions method
- SubtitleOptions options
Set the subtitle options used in the player.
Implementation
void setSubtitleOptions(SubtitleOptions options) {
_preferences.put('audio_allowance', options.audioAllowance);
_preferences.put('subtitle_delay', options.subtitleDelay);
_preferences.put('font_size', options.fontSize);
_preferences.put(
'font_name/${targetLanguage.languageCode}', options.fontName);
_preferences.put('regex_filter', options.regexFilter);
_preferences.put(
'subtitle_background_opacity', options.subtitleBackgroundOpacity);
_preferences.put('subtitle_outline_width', options.subtitleOutlineWidth);
_preferences.put('subtitle_background_blur_radius',
options.subtitleBackgroundBlurRadius);
_preferences.put('subtitle_above_bar', options.alwaysAboveBottomBar);
}