supabaseKey property
String?
get
supabaseKey
Get Supabase anon key for development mode Returns null if not configured
Implementation
static String? get supabaseKey {
if (!isAvailable) return null;
try {
final lib = PlatformLoader.loadCommons();
final getKey = lib.lookupFunction<Pointer<Utf8> Function(), Pointer<Utf8> Function()>(
'rac_dev_config_get_supabase_key',
);
final result = getKey();
if (result == nullptr) return null;
return result.toDartString();
} catch (e) {
_logger.debug('rac_dev_config_get_supabase_key not available: $e');
return null;
}
}