authState property
dynamic
get
authState
Get the current auth state
Implementation
AuthState get authState {
final _AuthInheritedProvider? provider = _AuthInheritedProvider.of(this);
return provider?.state ?? const AuthState();
}