castToRenderer method

Future<void> castToRenderer(
  1. String castDevice
)

castDevice - name of renderer device Start vlc video casting to the selected device. Set null if you wanna stop video casting.

Implementation

Future<void> castToRenderer(String castDevice) async {
  _throwIfNotInitialized('castToRenderer');
  return await vlcPlayerPlatform.castToRenderer(_viewId, castDevice);
}