generate static method
Generates the main export file.
Parameters:
exportStatements: The export statements to include.
Returns: The generated export file code.
Implementation
static String generate(List<String> exportStatements) {
return '''
library local2dart;
${exportStatements.join('\n')}
''';
}