seek method

Future<void> seek({
  1. bool relative = false,
  2. double interval = 10.0,
})

If relative is set to false sets the video position to an interval from the start.

If relative is set to true sets the video position to an interval from the current position.

Implementation

Future<void> seek({bool relative = false, double interval = 10.0}) {
  return chromeCastPlatform.seek(relative, interval, id: id);
}