addToCart method

Future<void> addToCart(
  1. String id,
  2. String name,
  3. double quantity,
  4. double price,
)

Implementation

Future<void> addToCart(
    String id, String name, double quantity, double price) {
  throw UnimplementedError('addToCart() has not been implemented.');
}