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