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