getModelImportPath method
Implementation
String getModelImportPath(String moduleName) {
final path = modelPath.replaceAll('{{model}}', moduleName.toSnakeCase()).replaceFirst('lib/', '');
return '$packageName/$path${moduleName.toSnakeCase()}.dart';
}