getValue method

RemoteConfigValue getValue(
  1. String key
)

Returns an 'Remote Config' value from Firebase Remote Config.

Implementation

r.RemoteConfigValue getValue(String key) =>
    _remoteConfig?.getValue(key) ??
    r.RemoteConfigValue(null, r.ValueSource.valueStatic);