setDisplayMode method
Set the video display mode.
Implementation
Future<bool> setDisplayMode(DisplayMode displayMode) async {
if (_isDisposedOrNotInitialized) {
return false;
}
return _videoPlayerPlatform.setDisplayMode(_playerId, displayMode);
}