getAllFeatureVariables method

Future<Map<String, dynamic>> getAllFeatureVariables(
  1. String featureKey,
  2. dynamic userID,
  3. Map<String, dynamic> attributes
)

Implementation

Future<Map<String, dynamic>> getAllFeatureVariables(
  String featureKey,
  userID,
  Map<String, dynamic> attributes,
) async {
  final featureVariables =
      await _channel.invokeMethod('getAllFeatureVariables', <String, dynamic>{
    'feature_key': featureKey,
    'user_id': userID,
    'attributes': attributes,
  });
  return Map<String, dynamic>.from(featureVariables);
}