authenticateUseCase property

AuthenticateUseCase get authenticateUseCase

Get authenticate use case

Implementation

static AuthenticateUseCase get authenticateUseCase {
  if (_authenticateUseCase == null) {
    throw Exception(
      'DependencyInjection not initialized. Call initialize() first.',
    );
  }
  return _authenticateUseCase!;
}