seek method

Future<void> seek(
  1. num timestamp
)

Allows a presenter to navigate to a specific section of the shared video file. The timestamp parameter refers to the timestamp at which the video should start, in milliseconds.

Implementation

Future<void> seek(num timestamp) async {
  await _methodChannel.invokeMethod<void>("seek", {"timestamp": timestamp});
  return Future.value();
}