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