모델명이 유효한지 확인합니다.
@override String validateModelName(List<String> rest) { if (rest.isEmpty) { print('Error: Model name must be specified.'); printUsage(); exit(1); } return rest.first; }