get<T> static method
Get config value for current tenant
Implementation
static T? get<T>(String key, {T? defaultValue}) {
final context = tenantStore.currentContext;
if (context == null) return defaultValue;
final value = context.config[key];
return value is T ? value : defaultValue;
}