setVideoTitleDisplay method
Set if, and how, the video title will be shown when media is played
position
see Position
timeout
title display timeout in milliseconds
Implementation
void setVideoTitleDisplay(int position, int timeout) async {
await _ensureInitialized();
if(_isNeedDisposed) return;
await _vlcApi.setVideoTitleDisplay(position,timeout,_textureId);
}