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