seekTo method

Future<void> seekTo(
  1. Duration moment
)

Sets the video's current timestamp to be at moment.

Implementation

Future<void> seekTo(Duration moment) async {
  await controller.seekTo(moment);
}