initialize method

Future<void> initialize()

Implementation

Future<void> initialize() async {
  if (_configManager.apiKey == null || _configManager.authToken == null) {
    await _auth();
  }

  await _initProjectUseCase.execute();

  if (_configManager.rootDir == null) {
    _fileManager.localizationDir;
  }

  await _checkNewLocalesLocally();
}