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