getServerDependencies method

Future<bool> getServerDependencies()

Get dependencies for the server app

Implementation

Future<bool> getServerDependencies() async {
  if (!config.createServer) return true;

  final String projectPath = p.join(config.outputDir, config.serverPackageName);
  return await flutterPubGet(projectPath);
}