authRepository property
AuthRepository
get
authRepository
Get auth repository
Implementation
static AuthRepository get authRepository {
if (_authRepository == null) {
throw Exception(
'DependencyInjection not initialized. Call initialize() first.',
);
}
return _authRepository!;
}