getModificationInfo method
- @Deprecated('Use metadata() in Flag class instead')
- String key
Get the modification infos relative to flag (modification)
key : the name of the key relative to modification Return map {"campaignId":"xxx", "variationId" : "xxxx", "variationGroupId":"xxxxx", "isReference": true/false}
Implementation
@Deprecated('Use metadata() in Flag class instead')
Map<String, dynamic>? getModificationInfo(String key) {
// Delegate the action to strategy
return _visitorDelegate.getModificationInfo(key);
}