stop method

void stop()

Stops the playing media

Implementation

void stop() async{
  await _ensureInitialized();
  if(_isNeedDisposed) return ;
  await _vlcApi.stop(_textureId);
}