setRemoteConfig method

void setRemoteConfig(
  1. Map<String, dynamic> newConfig
)

Sets the value of remoteConfig.

Calling this function will emit a synchronous event in the remoteConfigUpdates stream.

Implementation

void setRemoteConfig(Map<String, dynamic> newConfig) {
  _remoteConfig = newConfig;
  _remoteConfigUpdates.add(_remoteConfig);
}