getProjectsDir function

String getProjectsDir()

Get the projects directory path.

Implementation

String getProjectsDir() {
  final home = Platform.environment['HOME'] ?? '';
  return p.join(home, '.neomage', 'projects');
}