get method

Future<String?> get(
  1. String key
)

Implementation

Future<String?> get(String key) async {
  if (!nubrickRuntime.isReady) {
    await nubrickRuntime.ready;
  }
  return await NubrickFlutterPlatform.instance
      .getRemoteConfigValue(channelId, key);
}