setSpuDelay method

Future<void> setSpuDelay(
  1. int spuDelay
)

spuDelay - the amount of time in milliseconds which vlc subtitle should be delayed. (both positive & negative value applicable)

Implementation

Future<void> setSpuDelay(int spuDelay) async {
  _throwIfNotInitialized('setSpuDelay');
  value = value.copyWith(spuDelay: spuDelay);

  return vlcPlayerPlatform.setSpuDelay(_viewId, spuDelay);
}