getAllFeatureVariables method
Retrieves all feature variables for a given featureKey.
Implementation
@override
Future<Map<String, dynamic>> getAllFeatureVariables(
String featureKey,
) async {
final Map<dynamic, dynamic>? result =
await methodChannel.invokeMethod<Map<dynamic, dynamic>?>(
'getAllFeatureVariables',
<String, dynamic>{
'feature_key': featureKey,
},
);
return Map<String, dynamic>.from(result ?? <String, dynamic>{});
}