dart_cart 2.2.1 copy "dart_cart: ^2.2.1" to clipboard
dart_cart: ^2.2.1 copied to clipboard

This package for the cart management. This package helps you to perform basic cart operation like (Add to cart, Remove from cart, Get total count) etc.

dart_cart 🛒 #

Getting Started #

  • first create an instance of dart cart package.
     var cart = DartCart();
  • After getting the instance, we are able to get the built-in methods

    • Add Items into cart

           productId,unitPrice require
      
           cart.addToCart(productId,unitPrice);
      
    • Remove item one by one from cart ➖

          cart.decrementItemFromCart(index);
      
    • Add item one by one to cart ➕

          cart.incrementItemToCart(index);
      
    • Get the total amount

          cart.getTotalAmount()
      
    • Get the total quantity

          cart.getCartItemCount()
      
    • Get Specific Item from Cart

          cart.getSpecificItemFromCart(cartId)
      
    • Copyright || The original

          https://pub.dev/packages/flutter_cart
          https://github.com/osamaasifoak/flutter_cart
      
      
4
likes
120
pub points
34%
popularity

Publisher

unverified uploader

This package for the cart management. This package helps you to perform basic cart operation like (Add to cart, Remove from cart, Get total count) etc.

Homepage

Documentation

API reference

License

Apache-2.0 (LICENSE)

More

Packages that depend on dart_cart