seek method
Implementation
@override
Future<void> seek(int id, int time) async {
await methodChannel.invokeMethod<void>(ImpulsePlayerPluginConstants.MethodSeek, {
ImpulsePlayerPluginConstants.ParameterId: id,
ImpulsePlayerPluginConstants.ParameterTime: time,
});
}