seekTo method
Implementation
Future<bool> seekTo(Duration position) async {
try {
final bool result = await _platform.invokeMethod('seekTo', {
'position': position.inMilliseconds,
});
return result;
} catch (e) {
print("Failed to seek: $e");
return false;
}
}