WarehouseCard constructor

const WarehouseCard({
  1. Key? key,
  2. required int productCount,
  3. required double buyAmount,
})

Implementation

const WarehouseCard({super.key, required this.productCount, required this.buyAmount});