get method

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

Implementation

Future<String?> get(String key) async {
  return await NativebrikBridgePlatform.instance
      .getRemoteConfigValue(channelId, key);
}