ProductListRow constructor

const ProductListRow({
  1. Key? key,
  2. required String name,
  3. required String brand,
  4. required String price,
  5. required String quantity,
  6. required String total,
  7. required String status,
})

Implementation

const ProductListRow({
  Key? key,
  required this.name,
  required this.brand,
  required this.price,
  required this.quantity,
  required this.total,
  required this.status,
}) : super(key: key);