dart pub add shelfdart pub getdart testdart run bin/main.dartcurl -X POST http://localhost:8080/cart \
-H "Content-Type: application/json" \
-d '{"productId": "123", "quantity":5}'Item added to cart%
curl -X GET http://localhost:8080/cart[{"productId":"123","quantity":5}]%
curl -X POST http://localhost:8080/cart \
-H "Content-Type: application/json" \
-d '{"productId": "732", "quantity":7}'Item added to cart%
curl -X GET http://localhost:8080/cart[{"productId":"123","quantity":5},{"productId":"732","quantity":7}]%