runPubUpgrade method
void
runPubUpgrade(})
runs 'dart pub upgrade'
Implementation
void runPubUpgrade(
String? workingDirectory, {
Progress? progress,
bool compileExecutables = false,
}) {
runPub(
args: ['upgrade', if (!compileExecutables) '--no-precompile'],
workingDirectory: workingDirectory,
progress: progress,
);
}