run method
Executes the command using the provided command-line args.
Implementation
@override
Future<void> run(List<String> args) async {
LoggerService.section('Applying Dart fixes');
final config = await ConfigService.load();
await FlutterService(config).fix();
LoggerService.blank();
LoggerService.success('Dart fixes applied.');
LoggerService.blank();
}