authKey static method
Get the auth user
Implementation
static String authKey() {
String? authKey = instance.authStorageKey;
if (authKey == null) {
throw Exception("Auth key is not set in your Nylo instance");
}
return instance.authStorageKey!;
}