CartForUser constructor

CartForUser({
  1. required TotalCartPrice? totalCartPrice,
  2. required List<Products>? products,
  3. required String? sTypename,
})

Implementation

CartForUser(
    {required this.totalCartPrice,
    required this.products,
    required this.sTypename});