initializeProject method

Future<void> initializeProject()

Implementation

Future<void> initializeProject() async {
  try {
    await InitCommand().execute();
  } catch (e) {
    print("Error initializing project: $e");
    rethrow;
  }
}