seekTo method
Seeks playback to position. No-op until the stream has resolved, so a
host can wire it straight to a notes list without tracking readiness.
Implementation
Future<void> seekTo(Duration position) async {
await _state?._seekTo(position);
}