isFeatureEnabled method

Future<bool?> isFeatureEnabled(
  1. String featureKey
)

Implementation

Future<bool?> isFeatureEnabled(
  String featureKey,
) async {
  var res = await _channel.invokeMethod('isFeatureEnabled', <String, dynamic>{
    'feature_key': featureKey,
  });
  return res;
}