genReadme function
Implementation
void genReadme(File file) {
var text = '';
text = '${text}# ${domainName}_${modelName} \n';
text = '${text}\n';
text = '${text}**Categories**: ednet_core, domain models. \n';
text = '${text}\n';
text = '${text}## Description: \n';
text = '${text}${domainName}_${modelName} project uses \n';
text =
'${text}[EDNetCore](https://github.com/context-dev/ednet_core) for the model.';
addText(file, text);
}