getModelsDependencies method
Get dependencies for the models package
Implementation
Future<bool> getModelsDependencies() async {
if (!config.createModels) return true;
final String projectPath = p.join(config.outputDir, config.modelsPackageName);
return await dartPubGet(projectPath);
}