getABTestConfigValueForKey static method

Future getABTestConfigValueForKey(
  1. String key,
  2. dynamic defaultValue
)

get the abConfigValue of the corresponding key @param key String @returns corresponding abConfigValue Usageļ¼š String value = await RangersApplogFlutterPlugin.getABTestConfigValueForKey('ab_test_key');

Implementation

static Future<dynamic> getABTestConfigValueForKey(
    String key, dynamic defaultValue) async {
  return await _channel.invokeMethod(
      'getABTestConfigValueForKey', {'key': key, 'default': defaultValue});
}