createVodPlayer static method

Future<int?> createVodPlayer({
  1. bool? onlyAudio,
})

Creating a VOD player

Implementation

static Future<int?> createVodPlayer({bool? onlyAudio}) async {
  return await _pluginChannel.invoke<int>('createVodPlayer', {
    'onlyAudio': onlyAudio ?? false,
  });
}