getRendererDevices method

Future<Map<String, String>> getRendererDevices()

Returns all detected renderer devices as array of <String, String> The key parameter is the name of cast device and the value is the display name of cast device

Implementation

Future<Map<String, String>> getRendererDevices() async {
  _throwIfNotInitialized('getRendererDevices');

  return vlcPlayerPlatform.getRendererDevices(_viewId);
}