template method
dynamic
template(
- dynamic content
Implementation
template(content) {
String android = 'android{ \n';
android += 'defaultConfig {\n';
android += '$content\n';
android += '}\n';
code = android;
}