getValue static method

PRemoteConfigValue getValue(
  1. String keyName
)

Get the value in keyName

This function returns the value without any conversion.

Implementation

static PRemoteConfigValue getValue(String keyName) {
  return PRemoteConfigValue(_remoteConfig.getValue(keyName));
}