getAllFeatureVariables method

Future<Map<String, dynamic>> getAllFeatureVariables(
  1. String featureKey
)

Implementation

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