seek method

  1. @override
Future<void> seek(
  1. double time
)

Seeks to the given playback time in seconds. Must not be greater than the duration of the active Source. Only applicable for VOD. For live streams, use timeShift and setTimeShift.

Implementation

@override
Future<void> seek(double time) async =>
    _invokeMethod<void>(Methods.seek, time);