render method
Renders the complete export file template.
Generates a properly formatted export file with documentation and export statements for all specified files.
Implementation
String render() {
final buffer = StringBuffer();
// Export statements
for (final exportFile in exports) {
buffer.writeln("export 'src/$exportFile.dart';");
}
return buffer.toString();
}