seek method
Implementation
@override
void seek({double? to}) {
if (_audioElement != null && to != null) {
/// The value sent from the plugin is in milliseconds; HTMLAudioElement
/// uses seconds.
final toInSeconds = to / 1000;
_audioElement?.currentTime = toInSeconds;
}
}