runPubGet static method
- CLI Commands (pub get, build_runner, etc.)
Implementation
static Future<void> runPubGet({bool showResult = true}) async {
await _runCommand(
'flutter',
['pub', 'get'],
'✅ pub get completed',
showResult: showResult,
);
}