How to pass options to env.reset within a data collector

If you create a `GymEnv` you can pass keyword arguments to the reset method in the usual way:

env.reset(options={"custom_arg":"custom_value"}) 

I would like to know how to do the same for environments instantiated by data collectors like SyncDataCollector, would it be `create_env_kwargs`?