runPubGet static method

Future<void> runPubGet({
  1. bool showResult = true,
})

  1. 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,
  );
}