Flutter exposes the same Remote Config model as the native SDKs through Dart APIs.
Use:
  • getRemoteConfigs()
  • getRemoteConfig(key)
  • getRemoteConfigBool(key)
  • getRemoteConfigString(key)
  • getRemoteConfigNumber(key)
  • getRemoteConfigInt(key)

Runtime model

These are pull-based reads. Your app decides when to fetch, how to store values in UI state, and when to re-render. If your config depends on customer state, re-read after login, logout, reset, or entitlement-sensitive events.

Fallbacks

Keep local defaults for purchase-critical UI so the app can render safely when config is unavailable.

Create Remote Config

Read the product-level Remote Config model.