isFeaturesEnabled method
- List<
Feature> features
Checks if a given list of features
are enabled or not.
Implementation
Future<bool> isFeaturesEnabled(List<Feature> features) async {
List<String> featuresStrings = AirshipUtils.toFeatureStringList(features);
return await _module.channel.invokeMethod('privacyManager#isFeaturesEnabled', featuresStrings);
}