static bool isValidProjectName(String name) { final regex = RegExp(r'^[a-zA-Z][a-zA-Z0-9_\-]+$'); return regex.hasMatch(name); }