runPubOutdated static method

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

Implementation

static Future<void> runPubOutdated({bool showResult = true}) async {
  await _runCommand(
    'flutter',
    ['pub', 'outdated'],
    '📦 Outdated packages:',
    showResult: showResult,
  );
}