play method
Play the media
uri
Uri of the media to play
path
Path of the media file to play
Implementation
Future<void> play({String uri='',String path=''}) async {
await _ensureInitialized();
if(_isNeedDisposed) return;
await _vlcApi.play(uri,path,_textureId);
}