stop method
void
stop()
Stops the playing media
Implementation
void stop() async{
await _ensureInitialized();
if(_isNeedDisposed) return ;
await _vlcApi.stop(_textureId);
}
Stops the playing media
void stop() async{
await _ensureInitialized();
if(_isNeedDisposed) return ;
await _vlcApi.stop(_textureId);
}