startPlayer method

Future<String?> startPlayer({
  1. required String url,
  2. Map<String, String>? headers,
  3. bool autoPlay = true,
  4. bool closeOnError = false,
  5. bool showErrorBox = false,
  6. List<Subtitle>? subtitles,
})

Implementation

Future<String?> startPlayer({
  required String url,
  Map<String, String>? headers,
  bool autoPlay = true,
  bool closeOnError = false,
  bool showErrorBox = false,
  List<Subtitle>? subtitles,
}) {
  throw UnimplementedError('startPlayer() has not been implemented.');
}