generateDocumentation method
Generates comprehensive documentation for the localization package
Implementation
Future<void> generateDocumentation() async {
if (verbose) {
print('📚 Generating comprehensive documentation...');
}
await _generateReadme();
await _generateTranslationGuide();
if (verbose) {
print('✅ Documentation generated successfully!');
}
}