getUserProfiles method

Future<Map<String, dynamic>> getUserProfiles(
  1. bool predefined
)

Enables AB Testing. Predefined or custom user attributes are supported.

Implementation

Future<Map<String, dynamic>> getUserProfiles(bool predefined) async {
  Map<dynamic, dynamic> profiles = await _channel
      .invokeMethod('getUserProfiles', {'predefined': predefined});
  return Map<String, dynamic>.from(profiles);
}