isFeatureEnabled method
Checks if the feature with the given featureKey is enabled.
Implementation
@override
Future<bool> isFeatureEnabled(String featureKey) async {
final bool? result = await methodChannel
.invokeMethod<bool?>('isFeatureEnabled', <String, dynamic>{
'feature_key': featureKey,
});
return result ?? false;
}