getTreatmentsWithConfigByFlagSet method
Implementation
@override
Future<Map<String, SplitResult>> getTreatmentsWithConfigByFlagSet(
{required String matchingKey,
required String? bucketingKey,
required String flagSet,
Map<String, dynamic> attributes = const {}}) async {
Map? treatments = await methodChannel.invokeMapMethod(
'getTreatmentsWithConfigByFlagSet',
_buildParameters(matchingKey, bucketingKey,
{'flagSet': flagSet, 'attributes': attributes}));
return treatments?.map((key, value) =>
MapEntry(key, SplitResult(value['treatment'], value['config']))) ??
{};
}