has static method

bool has(
  1. String key
)

Check if config key exists

Implementation

static bool has(String key) {
  final context = tenantStore.currentContext;
  return context?.config.containsKey(key) ?? false;
}