getAllAbTestConfig static method

Future<Map?> getAllAbTestConfig()

get all ab config This method will not trigger exposure. Note: Only avaliable on iOS! Usage example: Map<dynamic, dynamic> d = await RangersApplogFlutterPlugin.getAllAbTestConfig();

Implementation

static Future<Map<dynamic, dynamic>?> getAllAbTestConfig() async {
  return await _channel.invokeMethod('getAllAbTestConfig');
}