toggleSubtitles method
Shows or hides the video subtitles based on the given boolean. Value is necessary
shouldShowBoolean indicating whether to show subtitles or not
Implementation
Future<void> toggleSubtitles(bool shouldShow) async {
await _methodChannel.invokeMethod<void>('toggleSubtitles', shouldShow);
}