seek method
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);
}