runFlutterPubGet method
Runs flutter pub get in the target project.
Implementation
Future<void> runFlutterPubGet(String projectPath) async {
await runCommand(
'flutter',
['pub', 'get'],
workingDirectory: projectPath,
showOutput: true,
);
}