(key: string)
| 56 | * @param key The parameter key in Remote Config |
| 57 | */ |
| 58 | export function useRemoteConfigBoolean(key: string): ObservableStatus<boolean> { |
| 59 | return useRemoteConfigValue_INTERNAL<boolean>(key, getBoolean); |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * Convience method similar to useRemoteConfigValue. Returns allRemote Config parameters. |
nothing calls this directly
no test coverage detected