run method
Executes the command using the provided command-line args.
Implementation
@override
Future<void> run(List<String> args) async {
LoggerService.section('Generating files');
final config = await ConfigService.load();
await FlutterService(config).buildRunner();
LoggerService.blank();
LoggerService.success('Generation complete.');
LoggerService.blank();
}