모델명이 유효한지 확인합니다.
@override String validateModelName(List<String> rest) { if (rest.isEmpty) { print('오류: 모델명을 지정해야 합니다.'); printUsage(); exit(1); } return rest.first; }