getLocalDefaultValue method
Get the default value set in the device.
Implementation
Future<RemoteConfigValue> getLocalDefaultValue(final String key) async {
var resultValue = await Repro._invokeMapMethod<String, dynamic>('remoteConfig_getLocalDefaultValue', key);
return RemoteConfigValue(resultValue!);
}