getSubtitles method

Future<List?> getSubtitles()

Returns the list of available subtitles for the current media

Implementation

Future<List<dynamic>?> getSubtitles() async {
  return await _methodChannel.invokeMethod<List<dynamic>>('getSubtitles');
}