generate method
Executes the plugin's code-generation and configuration logic.
Implementation
@override
Future<void> generate(ProjectContext context) async {
final pubspecPath = '${context.projectPath}/pubspec.yaml';
// 1. Add Provider dependency
Services.yamlService.addDependency(pubspecPath, 'provider', '^6.1.2');
}