I want to implement kind of a proxy for some boolean values in my app. The logic would be as follows:
- I receive a set of values from my back-end
- I have some of these values set in Firebase as well
When using a value in the app, I first check if it exists in Firebase
3.1. If it exists, take the Firebase value
3.2. If it does not exist, take the backend value
The question is - how can I check if the value exists in Firebase Remote Config?