static Future<bool> getPackages() async { try { await run( 'flutter', ["pub", "get"], ); return true; } catch (e) { return false; } }