seekTo method

void seekTo(
  1. int position
)

Seeks to a specific position in the media.

Accepts position in milliseconds. Throws UnimplementedError if not implemented by the platform.

Implementation

void seekTo(int position) {
  throw UnimplementedError('seekTo() has not been implemented.');
}