isSeekable method

Future<bool?> isSeekable()

Returns true if media is seekable.

Implementation

Future<bool?> isSeekable() async {
  _throwIfNotInitialized('isSeekable');

  return vlcPlayerPlatform.isSeekable(_viewId);
}