seekToPlayer method
Implementation
@override
Future<int> seekToPlayer(FlutterSoundPlayerCallback callback,
{Duration? duration}) {
return invokeMethod(
callback,
'seekToPlayer',
{
'duration': duration!.inMilliseconds,
},
);
}