isSeekable method

Future<bool> isSeekable()

Returns true if any media is seekable

Implementation

Future<bool> isSeekable()async{
  await _ensureInitialized();
  if(_isNeedDisposed) return false;
  return await _vlcApi.isSeekable(_textureId);
}