<itemvalue="The list of providers that this provider potentially depends on. This list must contains the classesfunctions annotated with `@riverpod`, not the generated providers themselves. Specifying this list is strictly equivalent to saying "This provider may be scoped". If a provider is scoped, it should specify [dependencies]. If it is never scoped, it should not specify [dependencies]."/>
<itemvalue="The list of providers that this provider potentially depends on. This list must contains the classesfunctions annotated with `@riverpod`, not the generated providers themselves. Specifying this list is strictly equivalent to saying "This provider may be scoped". If a provider is scoped, it should specify [dependencies]. If it is never scoped, it should not specify [dependencies]."/>
@ -71,7 +72,6 @@
<itemvalue="Use [environment] to set the environment variables for the process. If not set the environment of the parent process is inherited. Currently, only US-ASCII environment variables are supported and errors are likely to occur if an environment variable with code-points outside the US-ASCII range is passed in."/>
<itemvalue="Use [environment] to set the environment variables for the process. If not set the environment of the parent process is inherited. Currently, only US-ASCII environment variables are supported and errors are likely to occur if an environment variable with code-points outside the US-ASCII range is passed in."/>
<itemvalue="If [includeParentEnvironment] is `true`, the process's environment will include the parent process's environment, with [environment] taking precedence. Default is `true`."/>
<itemvalue="If [includeParentEnvironment] is `true`, the process's environment will include the parent process's environment, with [environment] taking precedence. Default is `true`."/>
<itemvalue="If [runInShell] is true, the process will be spawned through a system shell. On Linux and OS X, `binsh` is used, while `%WINDIR%\system32\cmd.exe` is used on Windows."/>
<itemvalue="If [runInShell] is true, the process will be spawned through a system shell. On Linux and OS X, `binsh` is used, while `%WINDIR%\system32\cmd.exe` is used on Windows."/>
<itemvalue="NOTE: On Windows, if [executable] is a batch file ('.bat' or '.cmd'), it may be launched by the operating system in a system shell regardless of the value of [runInShell]. This could result in arguments being parsed according to shell rules. For example:"/>