seekPrecise method

void seekPrecise(
  1. Duration duration
)

This will seek to the exact frame indicated by duration, or the frame before, instead of seeking to a keyframe like seekTime does.

Implementation

void seekPrecise(Duration duration) {
  player.seekPrecise(duration);
}