makeFirstCharLowerCase method
If the --name input is like 'models/common/User' or 'User' we need to make the first letter lowercase for generating the file
Implementation
String makeFirstCharLowerCase() {
return "${this[0].toLowerCase()}${substring(1)}";
}